/** * 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 create a new Organization. * @export * @interface CreateOrganizationRequest */ export interface CreateOrganizationRequest { /** * An organization name must be one or more alphanumeric strings each separated by a dot [ ('.')]. An alphanumeric string must start with a letter followed by one or more letters or digits a-z. The name must be at least 6 characters and no more than 250 characters. Names are case insensitive. Names cannot contain the reserved word 'sagebionetworks' * @type {string} * @memberof CreateOrganizationRequest */ organizationName?: string; } /** * Check if a given object implements the CreateOrganizationRequest interface. */ export declare function instanceOfCreateOrganizationRequest(value: object): value is CreateOrganizationRequest; export declare function CreateOrganizationRequestFromJSON(json: any): CreateOrganizationRequest; export declare function CreateOrganizationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateOrganizationRequest; export declare function CreateOrganizationRequestToJSON(json: any): CreateOrganizationRequest; export declare function CreateOrganizationRequestToJSONTyped(value?: CreateOrganizationRequest | null, ignoreDiscriminator?: boolean): any;