StartMailboxExportJobResponse.fromJson constructor

StartMailboxExportJobResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory StartMailboxExportJobResponse.fromJson(Map<String, dynamic> json) {
  return StartMailboxExportJobResponse(
    jobId: json['JobId'] as String?,
  );
}