Input$SalesIntegrationDocumentQuotationInput constructor

Input$SalesIntegrationDocumentQuotationInput({
  1. Enum$DocumentReferenceModelEnum? reference,
  2. String? label,
  3. String? prefix,
  4. Input$SalesIntegrationDocumentQuotationValidityInput? validity,
  5. String? color,
  6. String? note,
})

Implementation

factory Input$SalesIntegrationDocumentQuotationInput({
  Enum$DocumentReferenceModelEnum? reference,
  String? label,
  String? prefix,
  Input$SalesIntegrationDocumentQuotationValidityInput? validity,
  String? color,
  String? note,
}) =>
    Input$SalesIntegrationDocumentQuotationInput._({
      if (reference != null) r'reference': reference,
      if (label != null) r'label': label,
      if (prefix != null) r'prefix': prefix,
      if (validity != null) r'validity': validity,
      if (color != null) r'color': color,
      if (note != null) r'note': note,
    });