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
/** Set to true to apply taxes before this coupon's discount is applied. Check with your tax professional if you have questions about how you should calculate taxes. */
53
53
is_taxable: boolean;
54
+
/** Set to true to enable auto-apply functionality. */
55
+
customer_auto_apply: boolean;
56
+
/** Auto-apply coupons only. This coupon will be automatically applied when a customer record matches this query. Example: `attributes:name[auto_apply_coupons]=1`. */
57
+
customer_attribute_restrictions: string;
58
+
/** Auto-apply coupons only. This coupon will be automatically applied when a subscription includes a product with one of the codes in the list. Wildcards are allowed just like in product code restrictions. Example: `code_1,code_2,sku_*,abc`. */
/** The description of the third party key field for this hosted gateway. */
37
37
third_party_key_description: string;
38
+
/** Marks hosted payment gateways that are no longer supported. */
39
+
is_deprecated: boolean;
38
40
/** If this hosted gateway requires additional information, this will contain details about the data which needs to be collected to configure this hosted gateway. */
/** The description of the third party key field for this gateway. */
37
37
third_party_key_description: string;
38
+
/** Marks payment gateways that are no longer supported. */
39
+
is_deprecated: boolean;
38
40
/** If this gateway requires additional information, this will contain details about the data which needs to be collected to configure this gateway. */
/** Total amount of this transaction including all items, taxes, shipping costs and discounts. */
99
111
total_order: number;
100
112
/** Used for transactions processed with a hosted payment gateway which can change the status of the transaction after it is originally posted. If the status is empty, a normal payment gateway was used and the transaction should be considered completed. */
/** The UA string of a browser that customer used on checkout. May contain a special UA for subscription processing. */
136
+
user_agent: string;
137
+
/** If custom transaction IDs, prefixes, or suffixes have been configured, this value will contain the custom ID (which may be a string). Otherwise it will be identical to the id value (an integer). */
138
+
display_id: string|number;
139
+
/** The source of transaction that has occurred. CIT/MIT. */
/** The value of money that should be transferred to or from the merchant's bank account (or comparable). Note that voids or refunds will result in a negative number. */
22
+
amount: number;
23
+
/** If custom transaction IDs, prefixes, or suffixes have been configured, this value will contain the custom ID (which may be a string). Otherwise it will be identical to the id value (an integer). */
/** The order number for display (usually same as id). */
29
-
display_id: number;
28
+
/** If custom transaction IDs, prefixes, or suffixes have been configured, this value will contain the custom ID (which may be a string). Otherwise it will be identical to the id value (an integer). */
29
+
display_id: string|number;
30
30
/** True if this transaction was a test transaction and not run against a live payment gateway. */
31
31
is_test: boolean;
32
32
/** Set this to true to hide it in the FoxyCart admin. */
/** Total amount of this transaction including all items, taxes, shipping costs and discounts. */
61
61
total_order: number;
62
62
/** Used for transactions processed with a hosted payment gateway which can change the status of the transaction after it is originally posted. If the status is empty, a normal payment gateway was used and the transaction should be considered completed. */
0 commit comments