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)

63 lines 2.56 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. */ /** * label object * @export * @interface PostCharactersCharacterIdMailLabelsLabel */ export interface PostCharactersCharacterIdMailLabelsLabel { /** * Hexadecimal string representing label color, in RGB format * @type {string} * @memberof PostCharactersCharacterIdMailLabelsLabel */ color?: PostCharactersCharacterIdMailLabelsLabelColorEnum; /** * name string * @type {string} * @memberof PostCharactersCharacterIdMailLabelsLabel */ name: string; } /** * @export */ export declare const PostCharactersCharacterIdMailLabelsLabelColorEnum: { readonly _0000fe: "#0000fe"; readonly _006634: "#006634"; readonly _0099ff: "#0099ff"; readonly _00ff33: "#00ff33"; readonly _01ffff: "#01ffff"; readonly _349800: "#349800"; readonly _660066: "#660066"; readonly _666666: "#666666"; readonly _999999: "#999999"; readonly _99ffff: "#99ffff"; readonly _9a0000: "#9a0000"; readonly Ccff9a: "#ccff9a"; readonly E6e6e6: "#e6e6e6"; readonly Fe0000: "#fe0000"; readonly Ff6600: "#ff6600"; readonly Ffff01: "#ffff01"; readonly Ffffcd: "#ffffcd"; readonly Ffffff: "#ffffff"; }; export type PostCharactersCharacterIdMailLabelsLabelColorEnum = typeof PostCharactersCharacterIdMailLabelsLabelColorEnum[keyof typeof PostCharactersCharacterIdMailLabelsLabelColorEnum]; /** * Check if a given object implements the PostCharactersCharacterIdMailLabelsLabel interface. */ export declare function instanceOfPostCharactersCharacterIdMailLabelsLabel(value: object): value is PostCharactersCharacterIdMailLabelsLabel; export declare function PostCharactersCharacterIdMailLabelsLabelFromJSON(json: any): PostCharactersCharacterIdMailLabelsLabel; export declare function PostCharactersCharacterIdMailLabelsLabelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostCharactersCharacterIdMailLabelsLabel; export declare function PostCharactersCharacterIdMailLabelsLabelToJSON(json: any): PostCharactersCharacterIdMailLabelsLabel; export declare function PostCharactersCharacterIdMailLabelsLabelToJSONTyped(value?: PostCharactersCharacterIdMailLabelsLabel | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PostCharactersCharacterIdMailLabelsLabel.d.ts.map