@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
57 lines • 2.07 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.
*/
/**
* new_mail object
* @export
* @interface PostUiOpenwindowNewmailNewMail
*/
export interface PostUiOpenwindowNewmailNewMail {
/**
* body string
* @type {string}
* @memberof PostUiOpenwindowNewmailNewMail
*/
body: string;
/**
* recipients array
* @type {Array<number>}
* @memberof PostUiOpenwindowNewmailNewMail
*/
recipients: Array<number>;
/**
* subject string
* @type {string}
* @memberof PostUiOpenwindowNewmailNewMail
*/
subject: string;
/**
* to_corp_or_alliance_id integer
* @type {number}
* @memberof PostUiOpenwindowNewmailNewMail
*/
toCorpOrAllianceId?: number;
/**
* Corporations, alliances and mailing lists are all types of mailing groups. You may only send to one mailing group, at a time, so you may fill out either this field or the to_corp_or_alliance_ids field
* @type {number}
* @memberof PostUiOpenwindowNewmailNewMail
*/
toMailingListId?: number;
}
/**
* Check if a given object implements the PostUiOpenwindowNewmailNewMail interface.
*/
export declare function instanceOfPostUiOpenwindowNewmailNewMail(value: object): value is PostUiOpenwindowNewmailNewMail;
export declare function PostUiOpenwindowNewmailNewMailFromJSON(json: any): PostUiOpenwindowNewmailNewMail;
export declare function PostUiOpenwindowNewmailNewMailFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostUiOpenwindowNewmailNewMail;
export declare function PostUiOpenwindowNewmailNewMailToJSON(json: any): PostUiOpenwindowNewmailNewMail;
export declare function PostUiOpenwindowNewmailNewMailToJSONTyped(value?: PostUiOpenwindowNewmailNewMail | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PostUiOpenwindowNewmailNewMail.d.ts.map