toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final oauthClientIdName = this.oauthClientIdName;
final oauthClientIdVersionName = this.oauthClientIdVersionName;
final oauthSecretName = this.oauthSecretName;
final oauthSecretVersionName = this.oauthSecretVersionName;
final privateKeyName = this.privateKeyName;
final privateKeyVersionName = this.privateKeyVersionName;
final webhookSecretName = this.webhookSecretName;
final webhookSecretVersionName = this.webhookSecretVersionName;
return {
'oauthClientIdName': ?oauthClientIdName,
'oauthClientIdVersionName': ?oauthClientIdVersionName,
'oauthSecretName': ?oauthSecretName,
'oauthSecretVersionName': ?oauthSecretVersionName,
'privateKeyName': ?privateKeyName,
'privateKeyVersionName': ?privateKeyVersionName,
'webhookSecretName': ?webhookSecretName,
'webhookSecretVersionName': ?webhookSecretVersionName,
};
}