@seniorsistemas/senior-hcm
Version:
Senior HCM SDK para Node.js
24 lines (23 loc) • 457 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 { State } from './state';
export interface City {
stateId?: State;
/**
* Nome da cidade
*/
name: string;
/**
* Id da cidade
*/
id?: string;
}