/** * 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. */ /** * * @export * @interface StoreLocationResource */ export interface StoreLocationResource { /** * * @type {number} * @memberof StoreLocationResource */ latitude: number; /** * * @type {number} * @memberof StoreLocationResource */ longitude: number; } /** * Check if a given object implements the StoreLocationResource interface. */ export declare function instanceOfStoreLocationResource(value: object): value is StoreLocationResource; export declare function StoreLocationResourceFromJSON(json: any): StoreLocationResource; export declare function StoreLocationResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreLocationResource; export declare function StoreLocationResourceToJSON(json: any): StoreLocationResource; export declare function StoreLocationResourceToJSONTyped(value?: StoreLocationResource | null, ignoreDiscriminator?: boolean): any;