Skip to content

Commit

Permalink
Merge branch 'release/v1.1.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
dcaponi committed May 5, 2021
2 parents 3b38e3c + 39c1e94 commit c2893c9
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions pkg/services/users/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ type UserQuery struct {
Limit string
Page string
Cursor string
CreatedSince time.Time `json:"created_since,omitempty"`
CreatedUntil time.Time `json:"created_until,omitempty"`
UpdatedSince time.Time `json:"updated_since,omitempty"`
UpdatedUntil time.Time `json:"updated_until,omitempty"`
LastLoginSince time.Time `json:"last_login_since,omitempty"`
LastLoginUntil time.Time `json:"last_login_until,omitempty"`
Firstname *string `json:"firstname,omitempty"`
Lastname *string `json:"lastname,omitempty"`
Username *string `json:"username,omitempty"`
Samaccountname *string `json:"samaccountname,omitempty"`
DirectoryID *string `json:"directory_id,omitempty"`
ExternalID *string `json:"external_id,omitempty"`
AppID *string `json:"app_id,omitempty"`
UserIDs *string `json:"user_ids,omitempty"`
Fields *string `json:"fields,omitempty"`
CreatedSince *time.Time `json:"created_since,omitempty"`
CreatedUntil *time.Time `json:"created_until,omitempty"`
UpdatedSince *time.Time `json:"updated_since,omitempty"`
UpdatedUntil *time.Time `json:"updated_until,omitempty"`
LastLoginSince *time.Time `json:"last_login_since,omitempty"`
LastLoginUntil *time.Time `json:"last_login_until,omitempty"`
Firstname *string `json:"firstname,omitempty"`
Lastname *string `json:"lastname,omitempty"`
Username *string `json:"username,omitempty"`
Samaccountname *string `json:"samaccountname,omitempty"`
DirectoryID *string `json:"directory_id,omitempty"`
ExternalID *string `json:"external_id,omitempty"`
AppID *string `json:"app_id,omitempty"`
UserIDs *string `json:"user_ids,omitempty"`
Fields *string `json:"fields,omitempty"`
}

// User represents a OneLogin User
Expand Down

0 comments on commit c2893c9

Please sign in to comment.