MobX Lark
    Preparing search index...

    Interface UserMeta

    interface UserMeta {
        access_token: string;
        avatar_big: string;
        avatar_middle: string;
        avatar_thumb: string;
        avatar_url: string;
        email: string;
        employee_no: string;
        en_name: string;
        enterprise_email: string;
        expires_in: number;
        mobile: string;
        name: string;
        open_id: string;
        refresh_expires_in: number;
        refresh_token: string;
        tenant_key: string;
        token_type: "Bearer";
        union_id: string;
        user_id: string;
    }

    Hierarchy (View Summary)

    • LocaleUser
    • Pick<User, UserIdType | "mobile" | "employee_no">
    • Record<
          | `avatar_${"url"
          | "thumb"
          | "middle"
          | "big"}`
          | "tenant_key"
          | `${"access" | "refresh"}_token`,
          string,
      >
    • Record<`${"" | "refresh_"}expires_in`, number>
      • UserMeta
    Index

    Properties

    access_token: string
    avatar_big: string
    avatar_middle: string
    avatar_thumb: string
    avatar_url: string
    email: string
    employee_no: string
    en_name: string
    enterprise_email: string
    expires_in: number
    mobile: string
    name: string
    open_id: string
    refresh_expires_in: number
    refresh_token: string
    tenant_key: string
    token_type: "Bearer"
    union_id: string
    user_id: string