/** * Faraday REST API * The [Faraday](https://faraday.ai) API makes it easy to predict customer behavior programmatically. See our [API change policy](https://faraday.ai/legal). * * The version of the OpenAPI document: 1.0.0 * Contact: support@faraday.ai * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import { Location } from '../models'; export interface GetAtlasLocationsRequest { atlasId: string; limit?: number; offset?: number; } export interface GetLocationsRequest { limit?: number; offset?: number; } /** * */ export declare class LocationsApi extends runtime.BaseAPI { /** * Get a list of the locations belonging to a specific atlas * List the locations of an atlas */ getAtlasLocationsRaw(requestParameters: GetAtlasLocationsRequest): Promise>>; /** * Get a list of the locations belonging to a specific atlas * List the locations of an atlas */ getAtlasLocations(atlasId: string, limit?: number, offset?: number): Promise>; /** * Get a list of the locations belonging to every atlas on the account * List locations */ getLocationsRaw(requestParameters: GetLocationsRequest): Promise>>; /** * Get a list of the locations belonging to every atlas on the account * List locations */ getLocations(limit?: number, offset?: number): Promise>; }