UNPKG

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

Version:

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

87 lines (86 loc) 3.38 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 PostShopAllOfMeta */ export interface PostShopAllOfMeta { /** * Domain of the Shopify shop. * @type {string} * @memberof PostShopAllOfMeta */ 'shopifyShopDomain'?: string | null; /** * Flag to mark a shop used for testing. * @type {boolean} * @memberof PostShopAllOfMeta */ 'testShop'?: boolean | null; /** * Date time to indicate that the test shop will not be reset before this time. * @type {string} * @memberof PostShopAllOfMeta */ 'testShopResetNotBefore'?: string | null; /** * Flag to mark a shop in sandbox mode. * @type {boolean} * @memberof PostShopAllOfMeta */ 'sandboxMode'?: boolean | null; /** * Flag to mark if a test suffix should be added to internal references. * @type {boolean} * @memberof PostShopAllOfMeta */ 'addTestSuffixToInternalReference'?: boolean | null; /** * Flag to indicate whether firstname, lastname, and invoiceAddress fields are available for order customers or not. * @type {boolean} * @memberof PostShopAllOfMeta */ 'invoiceEnabled'?: boolean | null; /** * Overwrite currency of shopify orders. * @type {string} * @memberof PostShopAllOfMeta */ 'defaultCurrency'?: PostShopAllOfMetaDefaultCurrencyEnum; /** * 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 PostShopAllOfMeta */ 'overwriteCustomerEmailEnabled'?: boolean | null; /** * Text to be added to the beginning of the orderNotes of every order created for the shop. * @type {string} * @memberof PostShopAllOfMeta */ 'orderNotesPrecedingText'?: string | null; /** * Default notes to be printed on the delivery slip when an order is created without deliverySlipNotes. * @type {string} * @memberof PostShopAllOfMeta */ 'deliverySlipNotes'?: string | null; } export declare const PostShopAllOfMetaDefaultCurrencyEnum: { readonly Gbp: "GBP"; readonly Sek: "SEK"; readonly Pln: "PLN"; readonly Null: "null"; readonly UnknownDefaultOpenApi: "11184809"; }; export type PostShopAllOfMetaDefaultCurrencyEnum = typeof PostShopAllOfMetaDefaultCurrencyEnum[keyof typeof PostShopAllOfMetaDefaultCurrencyEnum];