@datenkraft/bb-fulfillment-api-ts-client
Version:
The fulfillment API TS Client enables you to work with the fulfillment API
67 lines (66 loc) • 2.83 kB
TypeScript
/**
* 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.
*/
/**
*
* @export
* @interface ProductDraftAllOf
*/
export interface ProductDraftAllOf {
/**
* The shop to which the product belongs
* @type {string}
* @memberof ProductDraftAllOf
*/
'shopCode'?: string;
/**
* The source of the product draft
* @type {string}
* @memberof ProductDraftAllOf
*/
'source'?: ProductDraftAllOfSourceEnum;
/**
*
* @type {string}
* @memberof ProductDraftAllOf
*/
'productDraftId'?: string;
/**
* Status of the product draft.\\ Available values: - pending: The product draft is subject to be checked by the steve team - accepted: The product draft is accepted and the product can be used in the /product endpoints - declined: The product draft is declined by the steve team
* @type {string}
* @memberof ProductDraftAllOf
*/
'productDraftStatus'?: ProductDraftAllOfProductDraftStatusEnum;
/**
* The create date for the product draft. Format in ISO 8601
* @type {string}
* @memberof ProductDraftAllOf
*/
'productDraftDate'?: string;
/**
* Unit of the product contents.\\ All units can be queried with a GET /product-unit call
* @type {string}
* @memberof ProductDraftAllOf
*/
'contentsUnit'?: string;
}
export declare const ProductDraftAllOfSourceEnum: {
readonly Api: "api";
readonly UnknownDefaultOpenApi: "11184809";
};
export type ProductDraftAllOfSourceEnum = typeof ProductDraftAllOfSourceEnum[keyof typeof ProductDraftAllOfSourceEnum];
export declare const ProductDraftAllOfProductDraftStatusEnum: {
readonly Pending: "pending";
readonly Accepted: "accepted";
readonly Declined: "declined";
readonly UnknownDefaultOpenApi: "11184809";
};
export type ProductDraftAllOfProductDraftStatusEnum = typeof ProductDraftAllOfProductDraftStatusEnum[keyof typeof ProductDraftAllOfProductDraftStatusEnum];