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