/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { SiteLiteResource } from './SiteLiteResource'; /** * * @export * @interface StoreListResource */ export interface StoreListResource { /** * * @type {number} * @memberof StoreListResource */ id?: number | null; /** * * @type {SiteLiteResource} * @memberof StoreListResource */ site: SiteLiteResource | null; /** * * @type {string} * @memberof StoreListResource */ name: string; /** * * @type {string} * @memberof StoreListResource */ phone: string; /** * * @type {number} * @memberof StoreListResource */ longitude: number; /** * * @type {number} * @memberof StoreListResource */ latitude: number; /** * * @type {string} * @memberof StoreListResource */ tagLine: string; /** * * @type {string} * @memberof StoreListResource */ email: string; /** * * @type {string} * @memberof StoreListResource */ website?: string | null; /** * * @type {number} * @memberof StoreListResource */ netsuiteId: number; /** * * @type {number} * @memberof StoreListResource */ displayNetsuiteId: number; /** * * @type {string} * @memberof StoreListResource */ openingHours?: string | null; } /** * Check if a given object implements the StoreListResource interface. */ export declare function instanceOfStoreListResource(value: object): value is StoreListResource; export declare function StoreListResourceFromJSON(json: any): StoreListResource; export declare function StoreListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreListResource; export declare function StoreListResourceToJSON(json: any): StoreListResource; export declare function StoreListResourceToJSONTyped(value?: StoreListResource | null, ignoreDiscriminator?: boolean): any;