@seniorsistemas/senior-hcm
Version:
Senior HCM SDK para Node.js
36 lines (35 loc) • 696 B
TypeScript
/**
* Dependentes
* HCM - Gestão de dependentes
*
*
* 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 { PhoneType } from './phoneType';
export interface Phone {
/**
* Número do telefone
*/
number: string;
phoneType: PhoneType;
/**
* Ramal do telefone
*/
extention?: string;
/**
* Código do país (DDI)
*/
internationalCode: string;
/**
* Código da localidade (DDD)
*/
localCode: string;
/**
* Id da entidade
*/
id?: string;
}