TenantSignUpBodyDto: {
    code: string;
    displayName: string;
    email: string;
    password: string;
    sessionType?: "personal" | "public";
    userId?: string;
}

Type declaration

  • code: string
  • displayName: string

    문자·숫자·공백과 _ - [ ] ( ) { } / * 만 사용할 수 있습니다.

  • email: string
  • password: string

    영문 대/소문자·숫자·특수문자 중 2종류 이상을 포함해야 합니다. 허용 문자: 영문, 숫자, `!@#$%^&*()-=_+~|[]{}:;'"<>,.?/

  • OptionalsessionType?: "personal" | "public"
  • OptionaluserId?: string