export interface DtoRedemptionInstruction { country?: string; deliveryType?: string; language?: string; link?: string; } export declare function instanceOfDtoRedemptionInstruction(value: object): value is DtoRedemptionInstruction; export declare function DtoRedemptionInstructionFromJSON(json: any): DtoRedemptionInstruction; export declare function DtoRedemptionInstructionFromJSONTyped(json: any, ignoreDiscriminator: boolean): DtoRedemptionInstruction; export declare function DtoRedemptionInstructionToJSON(json: any): DtoRedemptionInstruction; export declare function DtoRedemptionInstructionToJSONTyped(value?: DtoRedemptionInstruction | null, ignoreDiscriminator?: boolean): any;