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