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)

70 lines 2.49 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. */ import type { GetCharactersCharacterIdMailMailIdRecipient } from './GetCharactersCharacterIdMailMailIdRecipient'; /** * 200 ok object * @export * @interface GetCharactersCharacterIdMailMailIdOk */ export interface GetCharactersCharacterIdMailMailIdOk { /** * Mail's body * @type {string} * @memberof GetCharactersCharacterIdMailMailIdOk */ body?: string; /** * From whom the mail was sent * @type {number} * @memberof GetCharactersCharacterIdMailMailIdOk */ from?: number; /** * Labels attached to the mail * @type {Array<number>} * @memberof GetCharactersCharacterIdMailMailIdOk */ labels?: Array<number>; /** * Whether the mail is flagged as read * @type {boolean} * @memberof GetCharactersCharacterIdMailMailIdOk */ read?: boolean; /** * Recipients of the mail * @type {Set<GetCharactersCharacterIdMailMailIdRecipient>} * @memberof GetCharactersCharacterIdMailMailIdOk */ recipients?: Set<GetCharactersCharacterIdMailMailIdRecipient>; /** * Mail subject * @type {string} * @memberof GetCharactersCharacterIdMailMailIdOk */ subject?: string; /** * When the mail was sent * @type {Date} * @memberof GetCharactersCharacterIdMailMailIdOk */ timestamp?: Date; } /** * Check if a given object implements the GetCharactersCharacterIdMailMailIdOk interface. */ export declare function instanceOfGetCharactersCharacterIdMailMailIdOk(value: object): value is GetCharactersCharacterIdMailMailIdOk; export declare function GetCharactersCharacterIdMailMailIdOkFromJSON(json: any): GetCharactersCharacterIdMailMailIdOk; export declare function GetCharactersCharacterIdMailMailIdOkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdMailMailIdOk; export declare function GetCharactersCharacterIdMailMailIdOkToJSON(json: any): GetCharactersCharacterIdMailMailIdOk; export declare function GetCharactersCharacterIdMailMailIdOkToJSONTyped(value?: GetCharactersCharacterIdMailMailIdOk | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCharactersCharacterIdMailMailIdOk.d.ts.map