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