/** * 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. */ /** * Request to list a single page of the currently registered Organizations * @export * @interface ListOrganizationsRequest */ export interface ListOrganizationsRequest { /** * Forward the returned 'nextPageToken' to get the next page of results. * @type {string} * @memberof ListOrganizationsRequest */ nextPageToken?: string; } /** * Check if a given object implements the ListOrganizationsRequest interface. */ export declare function instanceOfListOrganizationsRequest(value: object): value is ListOrganizationsRequest; export declare function ListOrganizationsRequestFromJSON(json: any): ListOrganizationsRequest; export declare function ListOrganizationsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListOrganizationsRequest; export declare function ListOrganizationsRequestToJSON(json: any): ListOrganizationsRequest; export declare function ListOrganizationsRequestToJSONTyped(value?: ListOrganizationsRequest | null, ignoreDiscriminator?: boolean): any;