GetDocumentPathResponse.fromJson constructor
Implementation
factory GetDocumentPathResponse.fromJson(Map<String, dynamic> json) {
return GetDocumentPathResponse(
path: json['Path'] != null
? ResourcePath.fromJson(json['Path'] as Map<String, dynamic>)
: null,
);
}