toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
if (timestampMs != null) {
_json['timestampMs'] = timestampMs;
}
if (organizationId != null) {
_json['organizationId'] = organizationId;
}
_json['oauth2CredentialId'] = oauth2CredentialId;
_json['authCode'] = authCode;
_json['redirectUri'] = redirectUri;
_json['codeVerifier'] = codeVerifier;
if (nonce != null) {
_json['nonce'] = nonce;
}
if (bearerTokenTargetPublicKey != null) {
_json['bearerTokenTargetPublicKey'] = bearerTokenTargetPublicKey;
}
return _json;
}