/** * 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. */ /** * JSON schema for a request to create or update a Portal. * @export * @interface CreateOrUpdatePortalRequest */ export interface CreateOrUpdatePortalRequest { /** * The name of the portal, must be unique. * @type {string} * @memberof CreateOrUpdatePortalRequest */ name?: string; /** * The base URL of the portal, must be unique. * @type {string} * @memberof CreateOrUpdatePortalRequest */ url?: string; } /** * Check if a given object implements the CreateOrUpdatePortalRequest interface. */ export declare function instanceOfCreateOrUpdatePortalRequest(value: object): value is CreateOrUpdatePortalRequest; export declare function CreateOrUpdatePortalRequestFromJSON(json: any): CreateOrUpdatePortalRequest; export declare function CreateOrUpdatePortalRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateOrUpdatePortalRequest; export declare function CreateOrUpdatePortalRequestToJSON(json: any): CreateOrUpdatePortalRequest; export declare function CreateOrUpdatePortalRequestToJSONTyped(value?: CreateOrUpdatePortalRequest | null, ignoreDiscriminator?: boolean): any;