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