@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
73 lines • 2.75 kB
TypeScript
/**
* EVE Swagger Interface
* An OpenAPI for EVE Online
*
* The version of the OpenAPI document: 1.33
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* 200 ok object
* @export
* @interface GetCharactersCharacterIdContacts200Ok
*/
export interface GetCharactersCharacterIdContacts200Ok {
/**
* contact_id integer
* @type {number}
* @memberof GetCharactersCharacterIdContacts200Ok
*/
contactId: number;
/**
* contact_type string
* @type {string}
* @memberof GetCharactersCharacterIdContacts200Ok
*/
contactType: GetCharactersCharacterIdContacts200OkContactTypeEnum;
/**
* Whether this contact is in the blocked list. Note a missing value denotes unknown, not true or false
* @type {boolean}
* @memberof GetCharactersCharacterIdContacts200Ok
*/
isBlocked?: boolean;
/**
* Whether this contact is being watched
* @type {boolean}
* @memberof GetCharactersCharacterIdContacts200Ok
*/
isWatched?: boolean;
/**
* label_ids array
* @type {Array<number>}
* @memberof GetCharactersCharacterIdContacts200Ok
*/
labelIds?: Array<number>;
/**
* Standing of the contact
* @type {number}
* @memberof GetCharactersCharacterIdContacts200Ok
*/
standing: number;
}
/**
* @export
*/
export declare const GetCharactersCharacterIdContacts200OkContactTypeEnum: {
readonly Character: "character";
readonly Corporation: "corporation";
readonly Alliance: "alliance";
readonly Faction: "faction";
};
export type GetCharactersCharacterIdContacts200OkContactTypeEnum = typeof GetCharactersCharacterIdContacts200OkContactTypeEnum[keyof typeof GetCharactersCharacterIdContacts200OkContactTypeEnum];
/**
* Check if a given object implements the GetCharactersCharacterIdContacts200Ok interface.
*/
export declare function instanceOfGetCharactersCharacterIdContacts200Ok(value: object): value is GetCharactersCharacterIdContacts200Ok;
export declare function GetCharactersCharacterIdContacts200OkFromJSON(json: any): GetCharactersCharacterIdContacts200Ok;
export declare function GetCharactersCharacterIdContacts200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdContacts200Ok;
export declare function GetCharactersCharacterIdContacts200OkToJSON(json: any): GetCharactersCharacterIdContacts200Ok;
export declare function GetCharactersCharacterIdContacts200OkToJSONTyped(value?: GetCharactersCharacterIdContacts200Ok | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCharactersCharacterIdContacts200Ok.d.ts.map