fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
51 lines • 1.41 kB
TypeScript
/**
* 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 PageUserEntry
*/
export interface PageUserEntry {
/**
*
* @type {boolean}
* @memberof PageUserEntry
*/
isPrivate?: boolean;
/**
*
* @type {string}
* @memberof PageUserEntry
*/
avatarSrc?: string;
/**
*
* @type {string}
* @memberof PageUserEntry
*/
displayName: string;
/**
*
* @type {string}
* @memberof PageUserEntry
*/
id: string;
}
/**
* Check if a given object implements the PageUserEntry interface.
*/
export declare function instanceOfPageUserEntry(value: object): value is PageUserEntry;
export declare function PageUserEntryFromJSON(json: any): PageUserEntry;
export declare function PageUserEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageUserEntry;
export declare function PageUserEntryToJSON(json: any): PageUserEntry;
export declare function PageUserEntryToJSONTyped(value?: PageUserEntry | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PageUserEntry.d.ts.map