CartQuotationType
Type containing quotation information for a cart
type CartQuotationType {
quotationNumber: String
name: String
currency: String
marketId: String
channelId: String
status: QuotationStatus
createdAt: DateTimeOffset!
modifiedAt: DateTimeOffset!
validFrom: DateTimeOffset
validTo: DateTimeOffset
company: QuotationCompanyType
owner: QuotationOwnerType
customer: QuotationCustomerType
validPaymentMethods: [QuotationPaymentMethodType]
validShippingMethods: [QuotationShippingMethodType]
suggestedShippingFee: Decimal
terms: QuotationTermsType
billingAddress: QuotationAddressType
shippingAddress: QuotationAddressType
orderId: String
discount: QuotationDiscountType
settings: QuotationSettingsType
}
Fields
quotationNumber ● String scalar
The unique quotation number
name ● String scalar
The name of the quotation
currency ● String scalar
The currency code for the quotation
marketId ● String scalar
The market identifier
channelId ● String scalar
The channel identifier
status ● QuotationStatus enum
The current status of the quotation
createdAt ● DateTimeOffset! non-null scalar required
The date and time when the quotation was created
modifiedAt ● DateTimeOffset! non-null scalar required
The date and time when the quotation was last modified
validFrom ● DateTimeOffset scalar
The date and time from which the quotation is valid
validTo ● DateTimeOffset scalar
The date and time until which the quotation is valid
company ● QuotationCompanyType object
The company associated with the quotation
owner ● QuotationOwnerType object
The owner of the quotation
customer ● QuotationCustomerType object
The customer associated with the quotation
validPaymentMethods ● [QuotationPaymentMethodType] list object
The valid payment methods for the quotation
validShippingMethods ● [QuotationShippingMethodType] list object
The valid shipping methods for the quotation
suggestedShippingFee ● Decimal scalar
The suggested shipping fee for the quotation
terms ● QuotationTermsType object
The terms of the quotation
billingAddress ● QuotationAddressType object
The billing address for the quotation
shippingAddress ● QuotationAddressType object
The shipping address for the quotation
orderId ● String scalar
The order identifier if the quotation has been finalized
discount ● QuotationDiscountType object
The discount applied to the quotation
settings ● QuotationSettingsType object
The settings for the quotation
Member Of
CartType object