/** * 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 { TenantRelationshipsFeedbacksDataSchema } from './TenantRelationshipsFeedbacksDataSchema'; /** * Tenant-wide default feedback configurations. Up to one per stage (screening, assessment, interview). Used when the job has no stage-specific feedback override. Only sendable rows (status active or accepted) may be pinned here; archived/draft/failed ids are rejected with 400. * @export * @interface TenantRelationshipsFeedbacksSchema */ export interface TenantRelationshipsFeedbacksSchema { /** * * @type {Array} * @memberof TenantRelationshipsFeedbacksSchema */ data?: Array; } /** * Check if a given object implements the TenantRelationshipsFeedbacksSchema interface. */ export declare function instanceOfTenantRelationshipsFeedbacksSchema(value: object): value is TenantRelationshipsFeedbacksSchema; export declare function TenantRelationshipsFeedbacksSchemaFromJSON(json: any): TenantRelationshipsFeedbacksSchema; export declare function TenantRelationshipsFeedbacksSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantRelationshipsFeedbacksSchema; export declare function TenantRelationshipsFeedbacksSchemaToJSON(json: any): TenantRelationshipsFeedbacksSchema; export declare function TenantRelationshipsFeedbacksSchemaToJSONTyped(value?: TenantRelationshipsFeedbacksSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantRelationshipsFeedbacksSchema.d.ts.map