Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 0 additions & 31 deletions auth/user_mgt.go
Original file line number Diff line number Diff line change
Expand Up @@ -498,37 +498,6 @@ func (u *UserToUpdate) preparePayload(user *identitytoolkit.IdentitytoolkitRelyi

// End of validators

// Response Types -------------------------------

type getUserResponse struct {
RequestType string
Users []responseUserRecord
}

type responseUserRecord struct {
UID string
DisplayName string
Email string
PhoneNumber string
PhotoURL string
CreationTimestamp int64
LastLogInTimestamp int64
ProviderID string
CustomClaims string
Disabled bool
EmailVerified bool
ProviderUserInfo []*UserInfo
PasswordHash string
PasswordSalt string
ValidSince int64
}

type listUsersResponse struct {
RequestType string
Users []responseUserRecord
NextPage string
}

// Helper functions for retrieval and HTTP calls.

func (c *Client) createUser(ctx context.Context, user *UserToCreate) (string, error) {
Expand Down