@seniorsistemas/senior-hcm
Version:
Senior HCM SDK para Node.js
28 lines (27 loc) • 586 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 { NationalityType } from './nationalityType';
export interface Nationality {
/**
* Código da nacionalidade
*/
code?: number;
nationalityType: NationalityType;
/**
* Nome da nacionalidade
*/
name?: string;
/**
* Id da nacionalidade
*/
id?: string;
}