@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
51 lines • 1.84 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.
*/
/**
* 200 ok object
* @export
* @interface PostCharactersAffiliation200Ok
*/
export interface PostCharactersAffiliation200Ok {
/**
* The character's alliance ID, if their corporation is in an alliance
* @type {number}
* @memberof PostCharactersAffiliation200Ok
*/
allianceId?: number;
/**
* The character's ID
* @type {number}
* @memberof PostCharactersAffiliation200Ok
*/
characterId: number;
/**
* The character's corporation ID
* @type {number}
* @memberof PostCharactersAffiliation200Ok
*/
corporationId: number;
/**
* The character's faction ID, if their corporation is in a faction
* @type {number}
* @memberof PostCharactersAffiliation200Ok
*/
factionId?: number;
}
/**
* Check if a given object implements the PostCharactersAffiliation200Ok interface.
*/
export declare function instanceOfPostCharactersAffiliation200Ok(value: object): value is PostCharactersAffiliation200Ok;
export declare function PostCharactersAffiliation200OkFromJSON(json: any): PostCharactersAffiliation200Ok;
export declare function PostCharactersAffiliation200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostCharactersAffiliation200Ok;
export declare function PostCharactersAffiliation200OkToJSON(json: any): PostCharactersAffiliation200Ok;
export declare function PostCharactersAffiliation200OkToJSONTyped(value?: PostCharactersAffiliation200Ok | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PostCharactersAffiliation200Ok.d.ts.map