@apideck/node
Version:
Apideck Node.js SDK
64 lines (63 loc) • 1.78 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* 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 EcommerceStore
*/
export interface EcommerceStore {
/**
* A unique identifier for an object.
* @type {string}
* @memberof EcommerceStore
*/
readonly id: string;
/**
* The store's name
* @type {string}
* @memberof EcommerceStore
*/
name?: string | null;
/**
* The store's website URL
* @type {string}
* @memberof EcommerceStore
*/
store_url?: string | null;
/**
* The store's admin login URL
* @type {string}
* @memberof EcommerceStore
*/
admin_url?: string | null;
/**
* When custom mappings are configured on the resource, the result is included here.
* @type {object}
* @memberof EcommerceStore
*/
readonly custom_mappings?: object | null;
/**
* The date and time when the object was created.
* @type {Date}
* @memberof EcommerceStore
*/
readonly created_at?: Date | null;
/**
* The date and time when the object was last updated.
* @type {Date}
* @memberof EcommerceStore
*/
readonly updated_at?: Date | null;
}
export declare function EcommerceStoreFromJSON(json: any): EcommerceStore;
export declare function EcommerceStoreFromJSONTyped(json: any, ignoreDiscriminator: boolean): EcommerceStore;
export declare function EcommerceStoreToJSON(value?: EcommerceStore | null): any;