/** 고객 분리형 이름 */ export type CustomerSeparatedName = { /** 이름 */ first: string; /** 성 */ last: string; };