TGetOauth2CredentialBody.fromJson constructor
Implementation
factory TGetOauth2CredentialBody.fromJson(Map<String, dynamic> json) {
final _organizationId = json['organizationId'] as String?;
final _oauth2CredentialId = json['oauth2CredentialId'] as String;
return TGetOauth2CredentialBody(
organizationId: _organizationId,
oauth2CredentialId: _oauth2CredentialId,
);
}