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