UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

129 lines 3.5 kB
/** * fastcomments * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface GetUserInternalProfileResponseProfile */ export interface GetUserInternalProfileResponseProfile { /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ commenterName?: string; /** * * @type {Date} * @memberof GetUserInternalProfileResponseProfile */ firstCommentDate?: Date | null; /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ ipHash?: string; /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ countryFlag?: string; /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ countryCode?: string; /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ websiteUrl?: string | null; /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ bio?: string; /** * * @type {number} * @memberof GetUserInternalProfileResponseProfile */ karma?: number; /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ locale?: string; /** * * @type {boolean} * @memberof GetUserInternalProfileResponseProfile */ verified?: boolean; /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ avatarSrc?: string | null; /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ displayName?: string; /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ username?: string; /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ commenterEmail?: string | null; /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ email?: string | null; /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ anonUserId?: string | null; /** * * @type {string} * @memberof GetUserInternalProfileResponseProfile */ userId?: string | null; } /** * Check if a given object implements the GetUserInternalProfileResponseProfile interface. */ export declare function instanceOfGetUserInternalProfileResponseProfile(value: object): value is GetUserInternalProfileResponseProfile; export declare function GetUserInternalProfileResponseProfileFromJSON(json: any): GetUserInternalProfileResponseProfile; export declare function GetUserInternalProfileResponseProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserInternalProfileResponseProfile; export declare function GetUserInternalProfileResponseProfileToJSON(json: any): GetUserInternalProfileResponseProfile; export declare function GetUserInternalProfileResponseProfileToJSONTyped(value?: GetUserInternalProfileResponseProfile | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetUserInternalProfileResponseProfile.d.ts.map