v1GetOauth2CredentialResponse.fromJson constructor
Implementation
factory v1GetOauth2CredentialResponse.fromJson(Map<String, dynamic> json) {
final _oauth2Credential = v1Oauth2Credential.fromJson(json['oauth2Credential'] as Map<String, dynamic>);
return v1GetOauth2CredentialResponse(
oauth2Credential: _oauth2Credential,
);
}