/** * Adzerk Decision API * Adzerk Decision API * * The version of the OpenAPI document: 1.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 MatchedPoint */ export interface MatchedPoint { /** * * @type {string} * @memberof MatchedPoint */ lat?: string; /** * * @type {string} * @memberof MatchedPoint */ lon?: string; } export declare function MatchedPointFromJSON(json: any): MatchedPoint; export declare function MatchedPointFromJSONTyped(json: any, ignoreDiscriminator: boolean): MatchedPoint; export declare function MatchedPointToJSON(value?: MatchedPoint | null): any;