/** * 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. */ import type { CountryConditionOutcome } from './CountryConditionOutcome'; /** * * @export * @interface CountryConditionPayload */ export interface CountryConditionPayload { /** * * @type {Array} * @memberof CountryConditionPayload */ countries?: Array; /** * * @type {string} * @memberof CountryConditionPayload */ elseNextStepId?: string; } /** * Check if a given object implements the CountryConditionPayload interface. */ export declare function instanceOfCountryConditionPayload(value: object): value is CountryConditionPayload; export declare function CountryConditionPayloadFromJSON(json: any): CountryConditionPayload; export declare function CountryConditionPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): CountryConditionPayload; export declare function CountryConditionPayloadToJSON(json: any): CountryConditionPayload; export declare function CountryConditionPayloadToJSONTyped(value?: CountryConditionPayload | null, ignoreDiscriminator?: boolean): any;