/** * User Service API * Solomon AI User Service API - Manages user profiles and authentication * * The version of the OpenAPI document: 1.0 * Contact: yoanyomba@solomon-ai.co * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { BenefitPlanType } from './benefitPlanType'; import { EmployeeBenefits } from './employeeBenefits'; /** * EmployerBenefits is used to represent a benefit plan offered by a company. */ export declare class EmployerBenefits { 'id'?: string; /** * The third-party API ID of the matching object. External system identifier (integration) */ 'remoteId'?: string; 'benefitPlanType'?: BenefitPlanType; /** * The employer benefit\'s name - typically the carrier or network name. Name of the benefit plan */ 'name'?: string; /** * The employer benefit\'s description. Description of the plan */ 'description'?: string; /** * The employer benefit\'s deduction code. Code for payroll deduction */ 'deductionCode'?: string; /** * Indicates whether or not this object has been deleted in the third party platform. Flag for deletion status */ 'remoteWasDeleted'?: Date; 'createdAt'?: Date; /** * Last modification date in ISO 8601 format */ 'modifiedAt'?: Date; /** * Merge record UUID */ 'mergeAccountId'?: string; 'employeeBenefits'?: Array; 'deletedAt'?: Date; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace EmployerBenefits { }