MemberCreateResponseDto: {
    member: {
        activeSpaceCount?: number;
        affiliation?: string | null;
        bio?: string | null;
        createdAt: string;
        displayName: string;
        email: string | null;
        externalMemberCode?: string | null;
        fieldValues: {
            fieldId: string;
            valueDate: string | null;
            valueNumber: number | null;
            valueText: string | null;
        }[];
        id: string;
        inactiveSpaceCount?: number;
        isActive: boolean;
        isIssuedAccount?: boolean;
        lastLoginAt: string | null;
        pictureUrl?: string | null;
        profileId: string;
        role: {
            key: string;
            name: string;
        };
        userId: string | null;
    };
    tempPassword: string | null;
}

Type declaration

  • member: {
        activeSpaceCount?: number;
        affiliation?: string | null;
        bio?: string | null;
        createdAt: string;
        displayName: string;
        email: string | null;
        externalMemberCode?: string | null;
        fieldValues: {
            fieldId: string;
            valueDate: string | null;
            valueNumber: number | null;
            valueText: string | null;
        }[];
        id: string;
        inactiveSpaceCount?: number;
        isActive: boolean;
        isIssuedAccount?: boolean;
        lastLoginAt: string | null;
        pictureUrl?: string | null;
        profileId: string;
        role: {
            key: string;
            name: string;
        };
        userId: string | null;
    }
    • OptionalactiveSpaceCount?: number
    • Optionalaffiliation?: string | null
    • Optionalbio?: string | null
    • createdAt: string
    • displayName: string

      표시 이름. 구성원 정보 필드의 기본 필드 key name 에 대응.

    • email: string | null

      이메일. 구성원 정보 필드의 기본 필드 key identifier 에 대응.

    • OptionalexternalMemberCode?: string | null
    • fieldValues: {
          fieldId: string;
          valueDate: string | null;
          valueNumber: number | null;
          valueText: string | null;
      }[]
    • id: string
    • OptionalinactiveSpaceCount?: number
    • isActive: boolean
    • OptionalisIssuedAccount?: boolean
    • lastLoginAt: string | null

      마지막 접속. 기본 필드 key last_login_at 에 대응.

    • OptionalpictureUrl?: string | null
    • profileId: string
    • role: {
          key: string;
          name: string;
      }
      • key: string
      • name: string
    • userId: string | null
  • tempPassword: string | null