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
gift_card_code_logs?: GiftCardCodeLogs;// the zoom name is `applied_gift_card_codes`, but the resource is `gift_card_code_logs` so we use that here due to the limitations of the SDK types
/** Default configuration for card verification amounts. This is a serialized JSON string that contains the amounts for each card type. Example: `{"verification_amounts": {"visa": 1, "mastercard": 1, "american_express": 1, "discover": 1, "default": 1}}`. */
45
+
card_verification_config: string;
40
46
/** If this hosted gateway requires additional information, this will contain details about the data which needs to be collected to configure this hosted gateway. */
/** Your test payment gateway third party key. To view the specific description of this field for the given payment gateway, see {@link https://api-sandbox.foxycart.com/hal-browser/browser.html#https://api-sandbox.foxycart.com/property_helpers/payment_gateways payment_gateways} property helper `third_party_key_description` field. */
42
42
test_third_party_key: string;
43
+
/** Live card verification mode if this gateway supports it. */
/** Live configuration for card verification amounts. This is a serialized JSON string that contains the amounts for each card type. Example: `{"verification_amounts": {"visa": 1, "mastercard": 1, "american_express": 1, "discover": 1, "default": 1}}`. */
46
+
card_verification_config: string;
47
+
/** Test card verification mode if this gateway supports it. */
/** Test configuration for card verification amounts. This is a serialized JSON string that contains the amounts for each card type. Example: `{"verification_amounts": {"visa": 1, "mastercard": 1, "american_express": 1, "discover": 1, "default": 1}}`. */
/** Default configuration for card verification amounts. This is a serialized JSON string that contains the amounts for each card type. Example: `{"verification_amounts": {"visa": 1, "mastercard": 1, "american_express": 1, "discover": 1, "default": 1}}`. */
45
+
card_verification_config: string;
40
46
/** If this gateway requires additional information, this will contain details about the data which needs to be collected to configure this gateway. */
/** List of cart include templates available in this store. */
@@ -129,6 +132,8 @@ export interface Store extends Graph {
129
132
use_email_dns: boolean;
130
133
/** If you'd like to configure your own SMTP server for sending transaction receipt emails, you can do so here. The JSON supports the following fields: `username`,`password`,`host`,`port`,`security`. The security value can be blank, `ssl`, or `tls` */
131
134
smtp_config: string;
135
+
/** Set to true if you would like to send HTML formatted emails. */
136
+
send_html_email: boolean;
132
137
/** The postal code of your store. This will be used for calculating shipping costs if you sell shippable items. */
133
138
postal_code: string;
134
139
/** The two character code for states in the United States. Other countries may call this a province. When a two character code isn't available, use the full region name. This will be used for calculating shipping costs if you sell shippable items. */
/** When set to `1`, new transactions will be automatically assigned to this folder. Only one folder can be default at a time. If you update one folder to be the default one we will mark others as non default. Optional. Default: `0`.*/
18
+
is_default: 0|1;
19
+
/** Optional display order for this folder. Our admin dashboard will sort folders by this value (ascending). Default: `0`. */
20
+
sort_order: number;
21
+
/** Optional display color for this folder. API will accept any value, however our admin dashboard will recognize only the following: `red`, `red_pale`, `green`, `green_pale`, `blue`, `blue_pale`, `orange`, `orange_pale`, `violet`, `violet_pale`. Default: `null`. */
22
+
color: string|null;
23
+
/** The date and time this folder was created in ISO 8601 format. */
24
+
date_created: string;
25
+
/** The date and time this folder was last modified in ISO 8601 format. */
0 commit comments