You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**id** | **String** | The unique identifier for the product | [optional]
8
8
**name** | **String** | The name of the product | [optional]
9
-
**type** | **String** | The pricing model of the product: * FIXED: Customers are charged a fixed amount for each billing period * PER_SEAT: Customers are charged based on the number of units they purchase | [optional]
10
9
**seat_unit** | **String** | The unit of the per seat product. e.g. \"user\", \"organisation\", \"SMS\", etc | [optional]
10
+
**type** | **String** | The pricing model of the product: * FIXED: Customers are charged a fixed amount for each billing period * PER_SEAT: Customers are charged based on the number of units they purchase * METERED: Customers are charged per use of this product | [optional]
11
+
**usage_unit** | **String** | The unit of the usage product. e.g. \"user\", \"minutes\", \"SMS\", etc | [optional]
Copy file name to clipboardExpand all lines: docs/app_store/SubscriptionItem.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
**id** | **String** | The unique identifier of the subscription item. |
9
9
**price** | [**Price**](Price.md) | |
10
10
**product** | [**Product**](Product.md) | |
11
+
**quantity** | **Integer** | The quantity of the item. For a fixed product, it is 1. For a per-seat product, it is a positive integer. For metered products, it is always null. | [optional]
11
12
**start_date** | **DateTime** | Date the subscription started, or will start. Note: this could be in the future for downgrades or reduced number of seats that haven't taken effect yet. |
12
13
**status** | **String** | Status of the subscription item. Available statuses are ACTIVE, CANCELED, and PENDING_ACTIVATION. |
13
14
**test_mode** | **Boolean** | If the subscription is a test subscription | [optional]
Copy file name to clipboardExpand all lines: docs/app_store/index.html
+13-5Lines changed: 13 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -951,14 +951,18 @@
951
951
"type" : "string",
952
952
"description" : "The name of the product"
953
953
},
954
+
"seatUnit" : {
955
+
"type" : "string",
956
+
"description" : "The unit of the per seat product. e.g. \"user\", \"organisation\", \"SMS\", etc"
957
+
},
954
958
"type" : {
955
959
"type" : "string",
956
-
"description" : "The pricing model of the product:\n* FIXED: Customers are charged a fixed amount for each billing period\n* PER_SEAT: Customers are charged based on the number of units they purchase\n",
957
-
"enum" : [ "FIXED", "PER_SEAT" ]
960
+
"description" : "The pricing model of the product:\n* FIXED: Customers are charged a fixed amount for each billing period\n* PER_SEAT: Customers are charged based on the number of units they purchase\n* METERED: Customers are charged per use of this product\n",
961
+
"enum" : [ "FIXED", "PER_SEAT", "METERED" ]
958
962
},
959
-
"seatUnit" : {
963
+
"usageUnit" : {
960
964
"type" : "string",
961
-
"description" : "The unit of the per seat product. e.g. \"user\", \"organisation\", \"SMS\", etc"
965
+
"description" : "The unit of the usage product. e.g. \"user\", \"minutes\", \"SMS\", etc"
962
966
}
963
967
},
964
968
"description" : ""
@@ -1033,6 +1037,10 @@
1033
1037
"product" : {
1034
1038
"$ref" : "#/components/schemas/Product"
1035
1039
},
1040
+
"quantity" : {
1041
+
"type" : "integer",
1042
+
"description" : "The quantity of the item. For a fixed product, it is 1. For a per-seat product, it is a positive integer. For metered products, it is always null."
1043
+
},
1036
1044
"startDate" : {
1037
1045
"type" : "string",
1038
1046
"description" : "Date the subscription started, or will start. Note: this could be in\nthe future for downgrades or reduced number of seats that haven't taken effect yet.\n",
0 commit comments