UNPKG

fastcomments-sdk

Version:

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

41 lines 1.54 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. */ import type { UserSearchResult } from './UserSearchResult'; import type { UserSearchSection } from './UserSearchSection'; /** * * @export * @interface UserSearchSectionResult */ export interface UserSearchSectionResult { /** * * @type {UserSearchSection} * @memberof UserSearchSectionResult */ section: UserSearchSection; /** * * @type {Array<UserSearchResult>} * @memberof UserSearchSectionResult */ users: Array<UserSearchResult>; } /** * Check if a given object implements the UserSearchSectionResult interface. */ export declare function instanceOfUserSearchSectionResult(value: object): value is UserSearchSectionResult; export declare function UserSearchSectionResultFromJSON(json: any): UserSearchSectionResult; export declare function UserSearchSectionResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserSearchSectionResult; export declare function UserSearchSectionResultToJSON(json: any): UserSearchSectionResult; export declare function UserSearchSectionResultToJSONTyped(value?: UserSearchSectionResult | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserSearchSectionResult.d.ts.map