@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
69 lines • 2.22 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 GetAlliancesAllianceIdOk
*/
export interface GetAlliancesAllianceIdOk {
/**
* ID of the corporation that created the alliance
* @type {number}
* @memberof GetAlliancesAllianceIdOk
*/
creatorCorporationId: number;
/**
* ID of the character that created the alliance
* @type {number}
* @memberof GetAlliancesAllianceIdOk
*/
creatorId: number;
/**
* date_founded string
* @type {Date}
* @memberof GetAlliancesAllianceIdOk
*/
dateFounded: Date;
/**
* the executor corporation ID, if this alliance is not closed
* @type {number}
* @memberof GetAlliancesAllianceIdOk
*/
executorCorporationId?: number;
/**
* Faction ID this alliance is fighting for, if this alliance is enlisted in factional warfare
* @type {number}
* @memberof GetAlliancesAllianceIdOk
*/
factionId?: number;
/**
* the full name of the alliance
* @type {string}
* @memberof GetAlliancesAllianceIdOk
*/
name: string;
/**
* the short name of the alliance
* @type {string}
* @memberof GetAlliancesAllianceIdOk
*/
ticker: string;
}
/**
* Check if a given object implements the GetAlliancesAllianceIdOk interface.
*/
export declare function instanceOfGetAlliancesAllianceIdOk(value: object): value is GetAlliancesAllianceIdOk;
export declare function GetAlliancesAllianceIdOkFromJSON(json: any): GetAlliancesAllianceIdOk;
export declare function GetAlliancesAllianceIdOkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAlliancesAllianceIdOk;
export declare function GetAlliancesAllianceIdOkToJSON(json: any): GetAlliancesAllianceIdOk;
export declare function GetAlliancesAllianceIdOkToJSONTyped(value?: GetAlliancesAllianceIdOk | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetAlliancesAllianceIdOk.d.ts.map