/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 CountryConditionTraceOption */ export interface CountryConditionTraceOption { /** * * @type {string} * @memberof CountryConditionTraceOption */ countryCode?: string; /** * * @type {boolean} * @memberof CountryConditionTraceOption */ hasRoute?: boolean; } /** * Check if a given object implements the CountryConditionTraceOption interface. */ export declare function instanceOfCountryConditionTraceOption(value: object): value is CountryConditionTraceOption; export declare function CountryConditionTraceOptionFromJSON(json: any): CountryConditionTraceOption; export declare function CountryConditionTraceOptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): CountryConditionTraceOption; export declare function CountryConditionTraceOptionToJSON(json: any): CountryConditionTraceOption; export declare function CountryConditionTraceOptionToJSONTyped(value?: CountryConditionTraceOption | null, ignoreDiscriminator?: boolean): any;