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