/** * 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 CountryConditionOutcome */ export interface CountryConditionOutcome { /** * * @type {string} * @memberof CountryConditionOutcome */ countryCode?: string; /** * * @type {string} * @memberof CountryConditionOutcome */ nextStepId?: string; } /** * Check if a given object implements the CountryConditionOutcome interface. */ export declare function instanceOfCountryConditionOutcome(value: object): value is CountryConditionOutcome; export declare function CountryConditionOutcomeFromJSON(json: any): CountryConditionOutcome; export declare function CountryConditionOutcomeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CountryConditionOutcome; export declare function CountryConditionOutcomeToJSON(json: any): CountryConditionOutcome; export declare function CountryConditionOutcomeToJSONTyped(value?: CountryConditionOutcome | null, ignoreDiscriminator?: boolean): any;