UNPKG

@fnt-eve/esi-client-typescript

Version:

[![npm version](https://img.shields.io/npm/v/@fnt-eve/esi-client-typescript)](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)

49 lines 2.11 kB
/** * EVE Swagger Interface * An OpenAPI for EVE Online * * The version of the OpenAPI document: 1.36 * * * 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 PostCharactersCharacterIdMailRecipient */ export interface PostCharactersCharacterIdMailRecipient { /** * recipient_id integer * @type {number} * @memberof PostCharactersCharacterIdMailRecipient */ recipientId: number; /** * recipient_type string * @type {string} * @memberof PostCharactersCharacterIdMailRecipient */ recipientType: PostCharactersCharacterIdMailRecipientRecipientTypeEnum; } /** * @export */ export declare const PostCharactersCharacterIdMailRecipientRecipientTypeEnum: { readonly Alliance: "alliance"; readonly Character: "character"; readonly Corporation: "corporation"; readonly MailingList: "mailing_list"; }; export type PostCharactersCharacterIdMailRecipientRecipientTypeEnum = typeof PostCharactersCharacterIdMailRecipientRecipientTypeEnum[keyof typeof PostCharactersCharacterIdMailRecipientRecipientTypeEnum]; /** * Check if a given object implements the PostCharactersCharacterIdMailRecipient interface. */ export declare function instanceOfPostCharactersCharacterIdMailRecipient(value: object): value is PostCharactersCharacterIdMailRecipient; export declare function PostCharactersCharacterIdMailRecipientFromJSON(json: any): PostCharactersCharacterIdMailRecipient; export declare function PostCharactersCharacterIdMailRecipientFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostCharactersCharacterIdMailRecipient; export declare function PostCharactersCharacterIdMailRecipientToJSON(json: any): PostCharactersCharacterIdMailRecipient; export declare function PostCharactersCharacterIdMailRecipientToJSONTyped(value?: PostCharactersCharacterIdMailRecipient | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PostCharactersCharacterIdMailRecipient.d.ts.map