toJsonForProtocol method
Returns a JSON structure of the model, optimized for Protocol communication.
Implementation
@override
Map<String, dynamic> toJsonForProtocol() {
return {
'__className__': 'serverpod_auth_core.AuthSuccess',
'authStrategy': authStrategy,
'token': token,
if (tokenExpiresAt != null) 'tokenExpiresAt': tokenExpiresAt?.toJson(),
if (refreshToken != null) 'refreshToken': refreshToken,
'authUserId': authUserId.toJson(),
'scopeNames': scopeNames.toJson(),
};
}