sortBy property

String? sortBy
getter/setter pair

The field to use for sorting user accounts.

Defaults to USER_ID. Note: when phone_number is specified in expression, the result ignores the sorting. Only valid when return_user_info is set to true. Possible string values are:

  • "SORT_BY_FIELD_UNSPECIFIED" : Sort field is not specified.
  • "USER_ID" : Sort result by userId.
  • "NAME" : Sort result by name.
  • "CREATED_AT" : Sort result by createdAt.
  • "LAST_LOGIN_AT" : Sort result by lastLoginAt.
  • "USER_EMAIL" : Sort result by userEmail.

Implementation

core.String? sortBy;