@seniorsistemas/senior-hcm
Version:
Senior HCM SDK para Node.js
40 lines (39 loc) • 931 B
TypeScript
/**
* Folha de Pagamento
* HCM - Folha de pagamento
*
*
* Contact: seniorx-dev@senior.com.br
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
import { Employee } from './employee';
import { Jobposition } from './jobposition';
import { Movimentationreason } from './movimentationreason';
export interface HistoricalJobPosition {
/**
* Lote do histórico de posto de trabalho
*/
lotWorkstation?: string;
/**
* Data do histórico
*/
dateWhen: string;
/**
* Data fim do histórico
*/
endDate?: string;
jobPositionId: Jobposition;
movimentationReasonId: Movimentationreason;
/**
* Id do histórico
*/
id?: string;
/**
* É integração? (campo calculado)
*/
isIntegration?: boolean;
employee: Employee;
}