@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
52 lines • 1.95 kB
TypeScript
/**
* 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 { PostCharactersCharacterIdMailRecipient } from './PostCharactersCharacterIdMailRecipient';
/**
* mail object
* @export
* @interface PostCharactersCharacterIdMailMail
*/
export interface PostCharactersCharacterIdMailMail {
/**
* approved_cost integer
* @type {number}
* @memberof PostCharactersCharacterIdMailMail
*/
approvedCost?: number;
/**
* body string
* @type {string}
* @memberof PostCharactersCharacterIdMailMail
*/
body: string;
/**
* recipients array
* @type {Array<PostCharactersCharacterIdMailRecipient>}
* @memberof PostCharactersCharacterIdMailMail
*/
recipients: Array<PostCharactersCharacterIdMailRecipient>;
/**
* subject string
* @type {string}
* @memberof PostCharactersCharacterIdMailMail
*/
subject: string;
}
/**
* Check if a given object implements the PostCharactersCharacterIdMailMail interface.
*/
export declare function instanceOfPostCharactersCharacterIdMailMail(value: object): value is PostCharactersCharacterIdMailMail;
export declare function PostCharactersCharacterIdMailMailFromJSON(json: any): PostCharactersCharacterIdMailMail;
export declare function PostCharactersCharacterIdMailMailFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostCharactersCharacterIdMailMail;
export declare function PostCharactersCharacterIdMailMailToJSON(json: any): PostCharactersCharacterIdMailMail;
export declare function PostCharactersCharacterIdMailMailToJSONTyped(value?: PostCharactersCharacterIdMailMail | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PostCharactersCharacterIdMailMail.d.ts.map