UNPKG

fastcomments-sdk

Version:

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

147 lines 3.03 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 APISSOUser */ export interface APISSOUser { /** * * @type {string} * @memberof APISSOUser */ id: string; /** * * @type {string} * @memberof APISSOUser */ username: string; /** * * @type {string} * @memberof APISSOUser */ websiteUrl: string; /** * * @type {string} * @memberof APISSOUser */ email: string; /** * * @type {number} * @memberof APISSOUser */ signUpDate: number; /** * * @type {string} * @memberof APISSOUser */ createdFromUrlId: string; /** * * @type {number} * @memberof APISSOUser */ loginCount: number; /** * * @type {string} * @memberof APISSOUser */ avatarSrc: string; /** * * @type {boolean} * @memberof APISSOUser */ optedInNotifications: boolean; /** * * @type {boolean} * @memberof APISSOUser */ optedInSubscriptionNotifications: boolean; /** * * @type {string} * @memberof APISSOUser */ displayLabel: string; /** * * @type {string} * @memberof APISSOUser */ displayName: string; /** * * @type {boolean} * @memberof APISSOUser */ isAccountOwner?: boolean; /** * * @type {boolean} * @memberof APISSOUser */ isAdminAdmin?: boolean; /** * * @type {boolean} * @memberof APISSOUser */ isCommentModeratorAdmin?: boolean; /** * * @type {boolean} * @memberof APISSOUser */ isProfileActivityPrivate?: boolean; /** * * @type {boolean} * @memberof APISSOUser */ isProfileCommentsPrivate?: boolean; /** * * @type {boolean} * @memberof APISSOUser */ isProfileDMDisabled?: boolean; /** * * @type {boolean} * @memberof APISSOUser */ hasBlockedUsers?: boolean; /** * * @type {Array<string>} * @memberof APISSOUser */ groupIds?: Array<string>; } /** * Check if a given object implements the APISSOUser interface. */ export declare function instanceOfAPISSOUser(value: object): value is APISSOUser; export declare function APISSOUserFromJSON(json: any): APISSOUser; export declare function APISSOUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): APISSOUser; export declare function APISSOUserToJSON(json: any): APISSOUser; export declare function APISSOUserToJSONTyped(value?: APISSOUser | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=APISSOUser.d.ts.map