/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { TenantRelationshipsFormsDataSchema } from './TenantRelationshipsFormsDataSchema'; /** * Tenant-wide default forms per kind. Up to one form per FormKind value (jobBrief, candidateSubmission, talentSubmission, general). Designates which form's schema is canonical for each intake channel - the inbound email agent reads this to find the form whose fields it should populate when creating a brief. * @export * @interface TenantRelationshipsFormsSchema */ export interface TenantRelationshipsFormsSchema { /** * * @type {Array} * @memberof TenantRelationshipsFormsSchema */ data?: Array; } /** * Check if a given object implements the TenantRelationshipsFormsSchema interface. */ export declare function instanceOfTenantRelationshipsFormsSchema(value: object): value is TenantRelationshipsFormsSchema; export declare function TenantRelationshipsFormsSchemaFromJSON(json: any): TenantRelationshipsFormsSchema; export declare function TenantRelationshipsFormsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantRelationshipsFormsSchema; export declare function TenantRelationshipsFormsSchemaToJSON(json: any): TenantRelationshipsFormsSchema; export declare function TenantRelationshipsFormsSchemaToJSONTyped(value?: TenantRelationshipsFormsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantRelationshipsFormsSchema.d.ts.map