TGetOauth2CredentialBody.fromJson constructor

TGetOauth2CredentialBody.fromJson(
  1. Map<String, dynamic> json
)

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,
  );
}