LastReportGenerationExecutionError.fromJson constructor
Implementation
factory LastReportGenerationExecutionError.fromJson(
Map<String, dynamic> json) {
return LastReportGenerationExecutionError(
errorCode:
(json['ErrorCode'] as String?)?.toUsageReportExecutionErrorCode(),
errorMessage: json['ErrorMessage'] as String?,
);
}