@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
61 lines • 2.31 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 GetAlliancesAllianceIdContacts200Ok
*/
export interface GetAlliancesAllianceIdContacts200Ok {
/**
* contact_id integer
* @type {number}
* @memberof GetAlliancesAllianceIdContacts200Ok
*/
contactId: number;
/**
* contact_type string
* @type {string}
* @memberof GetAlliancesAllianceIdContacts200Ok
*/
contactType: GetAlliancesAllianceIdContacts200OkContactTypeEnum;
/**
* label_ids array
* @type {Array<number>}
* @memberof GetAlliancesAllianceIdContacts200Ok
*/
labelIds?: Array<number>;
/**
* Standing of the contact
* @type {number}
* @memberof GetAlliancesAllianceIdContacts200Ok
*/
standing: number;
}
/**
* @export
*/
export declare const GetAlliancesAllianceIdContacts200OkContactTypeEnum: {
readonly Character: "character";
readonly Corporation: "corporation";
readonly Alliance: "alliance";
readonly Faction: "faction";
};
export type GetAlliancesAllianceIdContacts200OkContactTypeEnum = typeof GetAlliancesAllianceIdContacts200OkContactTypeEnum[keyof typeof GetAlliancesAllianceIdContacts200OkContactTypeEnum];
/**
* Check if a given object implements the GetAlliancesAllianceIdContacts200Ok interface.
*/
export declare function instanceOfGetAlliancesAllianceIdContacts200Ok(value: object): value is GetAlliancesAllianceIdContacts200Ok;
export declare function GetAlliancesAllianceIdContacts200OkFromJSON(json: any): GetAlliancesAllianceIdContacts200Ok;
export declare function GetAlliancesAllianceIdContacts200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAlliancesAllianceIdContacts200Ok;
export declare function GetAlliancesAllianceIdContacts200OkToJSON(json: any): GetAlliancesAllianceIdContacts200Ok;
export declare function GetAlliancesAllianceIdContacts200OkToJSONTyped(value?: GetAlliancesAllianceIdContacts200Ok | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetAlliancesAllianceIdContacts200Ok.d.ts.map