/** * 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. */ /** * * @export * @interface UpdateWorkspaceOriginPurposeRequest */ export interface UpdateWorkspaceOriginPurposeRequest { /** * * @type {string} * @memberof UpdateWorkspaceOriginPurposeRequest */ originPurpose?: string; } /** * Check if a given object implements the UpdateWorkspaceOriginPurposeRequest interface. */ export declare function instanceOfUpdateWorkspaceOriginPurposeRequest(value: object): value is UpdateWorkspaceOriginPurposeRequest; export declare function UpdateWorkspaceOriginPurposeRequestFromJSON(json: any): UpdateWorkspaceOriginPurposeRequest; export declare function UpdateWorkspaceOriginPurposeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateWorkspaceOriginPurposeRequest; export declare function UpdateWorkspaceOriginPurposeRequestToJSON(json: any): UpdateWorkspaceOriginPurposeRequest; export declare function UpdateWorkspaceOriginPurposeRequestToJSONTyped(value?: UpdateWorkspaceOriginPurposeRequest | null, ignoreDiscriminator?: boolean): any;