Fields when send to the api inside a request.
Field | Type | Description |
---|---|---|
name | [Language: String] | Name of the option set |
allow_attachment | Bool | Allow the attachment of a picture to this option set |
options | [company.Option] | Array of company.Option |
code | String? | Optional. Nullable. Your own ID or key that you can associate with an option set |
multiple_choice | Bool | Optional. If true, the user can select none, one or more options (min_different_options and max_different_options is used for minimum and maximum) |
choose_amount | Bool | Optional. If true, the user can enter an amount for every option. Note that this can only get enabled when multiple_choice = true |
min_different_options | Int | Optional. When multiple choice is enabled, this is the minimum of different options a user should add to a cart item |
max_different_options | Int? | Optional. Nullable. When multiple choice is enabled, this is the maximum of different options a user should add to a cart item. When set to null, there is no limit |
min_amount_options | Int | Optional. When choose_amount is enabled, this is the minimum allowed sum of the option amounts user should add to a cart item |
max_amount_options | Int? | Optional. Nullable. When choose_amount is enabled, this is the maximum allowed sum of the option amounts a user should add to a cart item. When set to null, there is no limit |
Fields when returned by the api in a response.
Field | Type | Description |
---|---|---|
name | [Language: String] | Name of the option set |
allow_attachment | Bool | Allow the attachment of a picture to this option set |
options | [company.Option] | Array of company.Option |
id | Int | Id of the option set |
code | String? | Nullable. Your own ID or key that you can associate with an option set |
multiple_choice | Bool | If true, the user can select none, one or more options (min_different_options and max_different_options is used for minimum and maximum) |
choose_amount | Bool | If true, the user can enter an amount for every option. Note that this can only get enabled when multiple_choice = true |
min_different_options | Int | When multiple choice is enabled, this is the minimum of different options a user should add to a cart item |
max_different_options | Int? | Nullable. When multiple choice is enabled, this is the maximum of different options a user should add to a cart item. When set to null, there is no limit |
min_amount_options | Int | When choose_amount is enabled, this is the minimum allowed sum of the option amounts user should add to a cart item |
max_amount_options | Int? | Nullable. When choose_amount is enabled, this is the maximum allowed sum of the option amounts a user should add to a cart item. When set to null, there is no limit |
When used inside a request.
{
"name": {
"nl": "...",
"en": "...",
"fr": "..."
},
"allow_attachment": true,
"options": [
{
"name": {
"nl": "...",
"en": "...",
"fr": "..."
},
"price_change": 17,
"order": 14,
"price_calculation": "PER_PIECE",
"code": "..."
},
{
"name": {
"nl": "...",
"en": "...",
"fr": "..."
},
"price_change": 17,
"order": 11,
"price_calculation": "PER_PIECE",
"code": "..."
},
{
"name": {
"nl": "...",
"en": "...",
"fr": "..."
},
"price_change": 15,
"order": 16,
"price_calculation": "PER_PIECE",
"code": "..."
}
],
"code": "...",
"multiple_choice": true,
"choose_amount": false,
"min_different_options": 15,
"max_different_options": 10,
"min_amount_options": 17,
"max_amount_options": 17
}
When returned in a response.
{
"name": {
"nl": "...",
"en": "...",
"fr": "..."
},
"allow_attachment": true,
"options": [
{
"name": {
"nl": "...",
"en": "...",
"fr": "..."
},
"price_change": 16,
"id": 13,
"code": "...",
"order": 15,
"price_calculation": "PER_PIECE"
},
{
"name": {
"nl": "...",
"en": "...",
"fr": "..."
},
"price_change": 15,
"id": 12,
"code": "...",
"order": 19,
"price_calculation": "PER_PIECE"
},
{
"name": {
"nl": "...",
"en": "...",
"fr": "..."
},
"price_change": 11,
"id": 17,
"code": "...",
"order": 18,
"price_calculation": "PER_PIECE"
}
],
"id": 11,
"code": "...",
"multiple_choice": true,
"choose_amount": true,
"min_different_options": 10,
"max_different_options": 10,
"min_amount_options": 15,
"max_amount_options": 11
}