TDeleteOauth2CredentialBody.fromJson constructor

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

Implementation

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