OBJECT

ShippingTerms

link GraphQL Schema definition

1type ShippingTerms {
2id: Int!
3
4name: String!
5
6description: String!
7
8status: Status!
9
10isDefault: Boolean!
11
12isSelectable: Boolean!
13
14# Required permission: none
15#
16# All elements are always returned
17ranges: [ShippingPriceRange!]!
18
19}