@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
54 lines • 2.14 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 GetCharactersCharacterIdStandings200Ok
*/
export interface GetCharactersCharacterIdStandings200Ok {
/**
* from_id integer
* @type {number}
* @memberof GetCharactersCharacterIdStandings200Ok
*/
fromId: number;
/**
* from_type string
* @type {string}
* @memberof GetCharactersCharacterIdStandings200Ok
*/
fromType: GetCharactersCharacterIdStandings200OkFromTypeEnum;
/**
* standing number
* @type {number}
* @memberof GetCharactersCharacterIdStandings200Ok
*/
standing: number;
}
/**
* @export
*/
export declare const GetCharactersCharacterIdStandings200OkFromTypeEnum: {
readonly Agent: "agent";
readonly NpcCorp: "npc_corp";
readonly Faction: "faction";
};
export type GetCharactersCharacterIdStandings200OkFromTypeEnum = typeof GetCharactersCharacterIdStandings200OkFromTypeEnum[keyof typeof GetCharactersCharacterIdStandings200OkFromTypeEnum];
/**
* Check if a given object implements the GetCharactersCharacterIdStandings200Ok interface.
*/
export declare function instanceOfGetCharactersCharacterIdStandings200Ok(value: object): value is GetCharactersCharacterIdStandings200Ok;
export declare function GetCharactersCharacterIdStandings200OkFromJSON(json: any): GetCharactersCharacterIdStandings200Ok;
export declare function GetCharactersCharacterIdStandings200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdStandings200Ok;
export declare function GetCharactersCharacterIdStandings200OkToJSON(json: any): GetCharactersCharacterIdStandings200Ok;
export declare function GetCharactersCharacterIdStandings200OkToJSONTyped(value?: GetCharactersCharacterIdStandings200Ok | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCharactersCharacterIdStandings200Ok.d.ts.map