v1ListOauth2CredentialsRequest.fromJson constructor

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

Implementation

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