UNPKG

@datenkraft/bb-fulfillment-api-ts-client

Version:

The fulfillment API TS Client enables you to work with the fulfillment API

69 lines (68 loc) 2.73 kB
/** * Fulfillment API * - alpha: Currently developed API version. Subject to major changes. - beta: A semi-stable early access version. New features can be added. Breaking changes are possible. - stable: The API is recommended for use in production. [Changelog](https://fulfillment-api.steve.niceshops.com/v2/docs/changelog.html) All data is transferred in UTF-8 encoding.\\ The API uses stateless HTTP. No cookies have to be kept.\\ Authentication via OAuth2 client credentials flow. [Privacy Policy](https://www.niceshops.com/en/dienstleistungen/data-privacy-policy) [Fulfillment API PHP client @Packagist](https://packagist.org/packages/datenkraft/bb-fulfillment-api-php-client) * * The version of the OpenAPI document: v2.beta * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Meta data of the shop. * @export * @interface UpdateShopMeta */ export interface UpdateShopMeta { /** * Domain of the Shopify shop. * @type {string} * @memberof UpdateShopMeta */ 'shopifyShopDomain'?: string | null; /** * Date time to indicate that the test shop will not be reset before this time. * @type {string} * @memberof UpdateShopMeta */ 'testShopResetNotBefore'?: string | null; /** * Flag to mark a shop in sandbox mode. * @type {boolean} * @memberof UpdateShopMeta */ 'sandboxMode'?: boolean | null; /** * Flag to mark if a test suffix should be added to internal references. * @type {boolean} * @memberof UpdateShopMeta */ 'addTestSuffixToInternalReference'?: boolean | null; /** * Overwrite currency of shopify orders. * @type {string} * @memberof UpdateShopMeta */ 'defaultCurrency'?: UpdateShopMetaDefaultCurrencyEnum; /** * Flag to mark if it is allowed to set a customer\'s email in a third party app or via the API. If false the shop email will be used as default. * @type {boolean} * @memberof UpdateShopMeta */ 'overwriteCustomerEmailEnabled'?: boolean | null; /** * Text to be added to the beginning of the orderNotes of every order created for the shop. * @type {string} * @memberof UpdateShopMeta */ 'orderNotesPrecedingText'?: string | null; } export declare const UpdateShopMetaDefaultCurrencyEnum: { readonly Gbp: "GBP"; readonly Sek: "SEK"; readonly Pln: "PLN"; readonly Null: "null"; readonly UnknownDefaultOpenApi: "11184809"; }; export type UpdateShopMetaDefaultCurrencyEnum = typeof UpdateShopMetaDefaultCurrencyEnum[keyof typeof UpdateShopMetaDefaultCurrencyEnum];