/** * 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 UpdateWorkspaceOriginInquiryRequest */ export interface UpdateWorkspaceOriginInquiryRequest { /** * * @type {string} * @memberof UpdateWorkspaceOriginInquiryRequest */ originInquiry?: string; } /** * Check if a given object implements the UpdateWorkspaceOriginInquiryRequest interface. */ export declare function instanceOfUpdateWorkspaceOriginInquiryRequest(value: object): value is UpdateWorkspaceOriginInquiryRequest; export declare function UpdateWorkspaceOriginInquiryRequestFromJSON(json: any): UpdateWorkspaceOriginInquiryRequest; export declare function UpdateWorkspaceOriginInquiryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateWorkspaceOriginInquiryRequest; export declare function UpdateWorkspaceOriginInquiryRequestToJSON(json: any): UpdateWorkspaceOriginInquiryRequest; export declare function UpdateWorkspaceOriginInquiryRequestToJSONTyped(value?: UpdateWorkspaceOriginInquiryRequest | null, ignoreDiscriminator?: boolean): any;