Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 906 Bytes

BranchRep.md

File metadata and controls

28 lines (22 loc) · 906 Bytes

LaunchDarklyApi::BranchRep

Properties

Name Type Description Notes
name String The branch name
head String An ID representing the branch HEAD. For example, a commit SHA.
update_sequence_id Integer An optional ID used to prevent older data from overwriting newer data [optional]
sync_time Integer
references Array<ReferenceRep> An array of flag references found on the branch [optional]
_links Hash<String, Object> The location and content type of related resources

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::BranchRep.new(
  name: main,
  head: a94a8fe5ccb19ba61c4c0873d391e987982fbbd3,
  update_sequence_id: 25,
  sync_time: null,
  references: null,
  _links: null
)