@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
40 lines • 1.75 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 { GetCharactersCharacterIdMailLabelsLabel } from './GetCharactersCharacterIdMailLabelsLabel';
/**
* 200 ok object
* @export
* @interface GetCharactersCharacterIdMailLabelsOk
*/
export interface GetCharactersCharacterIdMailLabelsOk {
/**
* labels array
* @type {Array<GetCharactersCharacterIdMailLabelsLabel>}
* @memberof GetCharactersCharacterIdMailLabelsOk
*/
labels?: Array<GetCharactersCharacterIdMailLabelsLabel>;
/**
* total_unread_count integer
* @type {number}
* @memberof GetCharactersCharacterIdMailLabelsOk
*/
totalUnreadCount?: number;
}
/**
* Check if a given object implements the GetCharactersCharacterIdMailLabelsOk interface.
*/
export declare function instanceOfGetCharactersCharacterIdMailLabelsOk(value: object): value is GetCharactersCharacterIdMailLabelsOk;
export declare function GetCharactersCharacterIdMailLabelsOkFromJSON(json: any): GetCharactersCharacterIdMailLabelsOk;
export declare function GetCharactersCharacterIdMailLabelsOkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdMailLabelsOk;
export declare function GetCharactersCharacterIdMailLabelsOkToJSON(json: any): GetCharactersCharacterIdMailLabelsOk;
export declare function GetCharactersCharacterIdMailLabelsOkToJSONTyped(value?: GetCharactersCharacterIdMailLabelsOk | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCharactersCharacterIdMailLabelsOk.d.ts.map