본문으로 건너뛰기

nested-binding

nested binding

class Profile {
@body('nickname')
nickname!: string;
}

class Request {
@body('profile')
profile!: Profile;
}
  • Nested objects are fully supported with recursive type casting and validation.