/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Paginated results of strings * @export * @interface PaginatedIds */ export interface PaginatedIds { /** * The list of Object Ids for this page * @type {Array} * @memberof PaginatedIds */ results?: Array; /** * The total number of results * @type {number} * @memberof PaginatedIds */ totalNumberOfResults?: number; } /** * Check if a given object implements the PaginatedIds interface. */ export declare function instanceOfPaginatedIds(value: object): value is PaginatedIds; export declare function PaginatedIdsFromJSON(json: any): PaginatedIds; export declare function PaginatedIdsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedIds; export declare function PaginatedIdsToJSON(json: any): PaginatedIds; export declare function PaginatedIdsToJSONTyped(value?: PaginatedIds | null, ignoreDiscriminator?: boolean): any;