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
Copy file name to clipboardExpand all lines: docs/app_store/Product.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
7
7
**id** | **String** | The unique identifier for the product | [optional]
8
8
**name** | **String** | The name of the product | [optional]
9
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]
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 * SIMPLE: Customers are charged on a fixed amount for each billing period with an optional add-on feature | [optional]
11
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/index.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -976,8 +976,8 @@
976
976
},
977
977
"type" : {
978
978
"type" : "string",
979
-
"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",
980
-
"enum" : [ "FIXED", "PER_SEAT", "METERED" ]
979
+
"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* SIMPLE: Customers are charged on a fixed amount for each billing period with an optional add-on feature\n",
Copy file name to clipboardExpand all lines: lib/xero-ruby/models/app_store/product.rb
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -25,11 +25,12 @@ class Product
25
25
# The unit of the per seat product. e.g. \"user\", \"organisation\", \"SMS\", etc
26
26
attr_accessor:seat_unit
27
27
28
-
# 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
28
+
# 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 * SIMPLE: Customers are charged on a fixed amount for each billing period with an optional add-on feature
29
29
attr_accessor:type
30
30
FIXED ||= "FIXED".freeze
31
31
PER_SEAT ||= "PER_SEAT".freeze
32
32
METERED ||= "METERED".freeze
33
+
SIMPLE ||= "SIMPLE".freeze
33
34
34
35
# The unit of the usage product. e.g. \"user\", \"minutes\", \"SMS\", etc
35
36
attr_accessor:usage_unit
@@ -124,15 +125,15 @@ def list_invalid_properties
124
125
# Check to see if the all the properties in the model are valid
0 commit comments