/**
 * EVE Swagger Interface
 * An OpenAPI for EVE Online
 *
 * The version of the OpenAPI document: 1.33
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * recipient object
 * @export
 * @interface GetCharactersCharacterIdMailRecipient
 */
export interface GetCharactersCharacterIdMailRecipient {
    /**
     * recipient_id integer
     * @type {number}
     * @memberof GetCharactersCharacterIdMailRecipient
     */
    recipientId: number;
    /**
     * recipient_type string
     * @type {string}
     * @memberof GetCharactersCharacterIdMailRecipient
     */
    recipientType: GetCharactersCharacterIdMailRecipientRecipientTypeEnum;
}
/**
 * @export
 */
export declare const GetCharactersCharacterIdMailRecipientRecipientTypeEnum: {
    readonly Alliance: "alliance";
    readonly Character: "character";
    readonly Corporation: "corporation";
    readonly MailingList: "mailing_list";
};
export type GetCharactersCharacterIdMailRecipientRecipientTypeEnum = typeof GetCharactersCharacterIdMailRecipientRecipientTypeEnum[keyof typeof GetCharactersCharacterIdMailRecipientRecipientTypeEnum];
/**
 * Check if a given object implements the GetCharactersCharacterIdMailRecipient interface.
 */
export declare function instanceOfGetCharactersCharacterIdMailRecipient(value: object): value is GetCharactersCharacterIdMailRecipient;
export declare function GetCharactersCharacterIdMailRecipientFromJSON(json: any): GetCharactersCharacterIdMailRecipient;
export declare function GetCharactersCharacterIdMailRecipientFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdMailRecipient;
export declare function GetCharactersCharacterIdMailRecipientToJSON(json: any): GetCharactersCharacterIdMailRecipient;
export declare function GetCharactersCharacterIdMailRecipientToJSONTyped(value?: GetCharactersCharacterIdMailRecipient | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCharactersCharacterIdMailRecipient.d.ts.map