| Name | Type | Description | Notes |
|---|---|---|---|
| Name | string | The branch name | |
| Head | string | An ID representing the branch HEAD. For example, a commit SHA. | |
| UpdateSequenceId | Pointer to int64 | An optional ID used to prevent older data from overwriting newer data | [optional] |
| SyncTime | int64 | ||
| References | Pointer to []ReferenceRep | An array of flag references found on the branch | [optional] |
| Links | map[string]interface{} | The location and content type of related resources |
func NewBranchRep(name string, head string, syncTime int64, links map[string]interface{}, ) *BranchRep
NewBranchRep instantiates a new BranchRep object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewBranchRepWithDefaults() *BranchRep
NewBranchRepWithDefaults instantiates a new BranchRep object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *BranchRep) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *BranchRep) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BranchRep) SetName(v string)
SetName sets Name field to given value.
func (o *BranchRep) GetHead() string
GetHead returns the Head field if non-nil, zero value otherwise.
func (o *BranchRep) GetHeadOk() (*string, bool)
GetHeadOk returns a tuple with the Head field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BranchRep) SetHead(v string)
SetHead sets Head field to given value.
func (o *BranchRep) GetUpdateSequenceId() int64
GetUpdateSequenceId returns the UpdateSequenceId field if non-nil, zero value otherwise.
func (o *BranchRep) GetUpdateSequenceIdOk() (*int64, bool)
GetUpdateSequenceIdOk returns a tuple with the UpdateSequenceId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BranchRep) SetUpdateSequenceId(v int64)
SetUpdateSequenceId sets UpdateSequenceId field to given value.
func (o *BranchRep) HasUpdateSequenceId() bool
HasUpdateSequenceId returns a boolean if a field has been set.
func (o *BranchRep) GetSyncTime() int64
GetSyncTime returns the SyncTime field if non-nil, zero value otherwise.
func (o *BranchRep) GetSyncTimeOk() (*int64, bool)
GetSyncTimeOk returns a tuple with the SyncTime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BranchRep) SetSyncTime(v int64)
SetSyncTime sets SyncTime field to given value.
func (o *BranchRep) GetReferences() []ReferenceRep
GetReferences returns the References field if non-nil, zero value otherwise.
func (o *BranchRep) GetReferencesOk() (*[]ReferenceRep, bool)
GetReferencesOk returns a tuple with the References field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BranchRep) SetReferences(v []ReferenceRep)
SetReferences sets References field to given value.
func (o *BranchRep) HasReferences() bool
HasReferences returns a boolean if a field has been set.
func (o *BranchRep) GetLinks() map[string]interface{}
GetLinks returns the Links field if non-nil, zero value otherwise.
func (o *BranchRep) GetLinksOk() (*map[string]interface{}, bool)
GetLinksOk returns a tuple with the Links field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BranchRep) SetLinks(v map[string]interface{})
SetLinks sets Links field to given value.