import { AllowedValueWithCode } from '../../commonStateTypes/allowedValue'; import { CountryListPayload } from '../../entity/countryList/payloads/countryListPayload'; import { ZeniAPIResponse } from '../../responsePayload'; interface UserRoleConfigPayload { nationality: CountryListPayload[]; title_at_company_types: AllowedValueWithCode[]; } export type UserRoleConfigResponse = ZeniAPIResponse; export {};