/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 { Member } from './Member'; /** * ListResponse wraps the current page of teammates for the workspace directory. * @export * @interface ListResponse */ export interface ListResponse { /** * * @type {Array} * @memberof ListResponse */ members?: Array; } /** * Check if a given object implements the ListResponse interface. */ export declare function instanceOfListResponse(value: object): value is ListResponse; export declare function ListResponseFromJSON(json: any): ListResponse; export declare function ListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListResponse; export declare function ListResponseToJSON(json: any): ListResponse; export declare function ListResponseToJSONTyped(value?: ListResponse | null, ignoreDiscriminator?: boolean): any;