ClaimDevicesByClaimCodeResponse.fromJson constructor
Implementation
factory ClaimDevicesByClaimCodeResponse.fromJson(Map<String, dynamic> json) {
return ClaimDevicesByClaimCodeResponse(
claimCode: json['claimCode'] as String?,
total: json['total'] as int?,
);
}