@fnt-eve/esi-client-typescript
Version:
[](https://www.npmjs.com/package/@fnt-eve/esi-client-typescript)
57 lines • 2.44 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 GetCharactersCharacterIdNotificationsContacts200Ok
*/
export interface GetCharactersCharacterIdNotificationsContacts200Ok {
/**
* message string
* @type {string}
* @memberof GetCharactersCharacterIdNotificationsContacts200Ok
*/
message: string;
/**
* notification_id integer
* @type {number}
* @memberof GetCharactersCharacterIdNotificationsContacts200Ok
*/
notificationId: number;
/**
* send_date string
* @type {Date}
* @memberof GetCharactersCharacterIdNotificationsContacts200Ok
*/
sendDate: Date;
/**
* sender_character_id integer
* @type {number}
* @memberof GetCharactersCharacterIdNotificationsContacts200Ok
*/
senderCharacterId: number;
/**
* A number representing the standing level the receiver has been added at by the sender. The standing levels are as follows: -10 -> Terrible | -5 -> Bad | 0 -> Neutral | 5 -> Good | 10 -> Excellent
* @type {number}
* @memberof GetCharactersCharacterIdNotificationsContacts200Ok
*/
standingLevel: number;
}
/**
* Check if a given object implements the GetCharactersCharacterIdNotificationsContacts200Ok interface.
*/
export declare function instanceOfGetCharactersCharacterIdNotificationsContacts200Ok(value: object): value is GetCharactersCharacterIdNotificationsContacts200Ok;
export declare function GetCharactersCharacterIdNotificationsContacts200OkFromJSON(json: any): GetCharactersCharacterIdNotificationsContacts200Ok;
export declare function GetCharactersCharacterIdNotificationsContacts200OkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCharactersCharacterIdNotificationsContacts200Ok;
export declare function GetCharactersCharacterIdNotificationsContacts200OkToJSON(json: any): GetCharactersCharacterIdNotificationsContacts200Ok;
export declare function GetCharactersCharacterIdNotificationsContacts200OkToJSONTyped(value?: GetCharactersCharacterIdNotificationsContacts200Ok | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCharactersCharacterIdNotificationsContacts200Ok.d.ts.map