Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 942 Bytes

UsersRep.md

File metadata and controls

22 lines (16 loc) · 942 Bytes

LaunchDarklyApi::UsersRep

Properties

Name Type Description Notes
_links Hash<String, Link> The location and content type of related resources [optional]
total_count Integer The total number of users in the environment
items Array<UserRecord> Details on the users

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::UsersRep.new(
  _links: {&quot;next&quot;:{&quot;href&quot;:&quot;/api/v2/users/my-project/my-environment?after&#x3D;1647993600000&amp;limit&#x3D;20&amp;searchAfter&#x3D;my-user&quot;,&quot;type&quot;:&quot;application/json&quot;},&quot;self&quot;:{&quot;href&quot;:&quot;/api/v2/users/my-project/my-environment?after&#x3D;1647993600000&amp;limit&#x3D;20&quot;,&quot;type&quot;:&quot;application/json&quot;}},
  total_count: 245,
  items: null
)