SubmitJobRequest constructor

SubmitJobRequest({
  1. required PrintJob job,
  2. String? documentBlobUuid,
})

Implementation

SubmitJobRequest({
  /// The print job to be submitted.
  /// The only supported content type is "application/pdf", and the
  /// [Cloud Job
  /// Ticket](https://developers.google.com/cloud-print/docs/cdd#cjt)
  /// shouldn't include `FitToPageTicketItem`,
  /// `PageRangeTicketItem`, `ReverseOrderTicketItem`
  /// and `VendorTicketItem` fields since they are
  /// irrelevant for native printing. All other fields must be present.
  required PrintJob job,

  /// Used internally to store the blob uuid after parameter customization and
  /// shouldn't be populated by the extension.
  String? documentBlobUuid,
}) : _wrapped = $js.SubmitJobRequest(
        job: job.toJS,
        documentBlobUuid: documentBlobUuid,
      );