Skip to content

Latest commit

 

History

History
143 lines (76 loc) · 4.35 KB

UpdateReferralBatch.md

File metadata and controls

143 lines (76 loc) · 4.35 KB

UpdateReferralBatch

Properties

Name Type Description Notes
Attributes Pointer to map[string]interface{} Arbitrary properties associated with this item. [optional]
BatchID Pointer to string The id of the batch the referral belongs to.
StartDate Pointer to time.Time Timestamp at which point the referral code becomes valid. [optional]
ExpiryDate Pointer to time.Time Expiration date of the referral code. Referral never expires if this is omitted. [optional]
UsageLimit Pointer to int32 The number of times a referral code can be used. This can be set to 0 for no limit, but any campaign usage limits will still apply. [optional]

Methods

GetAttributes

func (o *UpdateReferralBatch) GetAttributes() map[string]interface{}

GetAttributes returns the Attributes field if non-nil, zero value otherwise.

GetAttributesOk

func (o *UpdateReferralBatch) GetAttributesOk() (map[string]interface{}, bool)

GetAttributesOk returns a tuple with the Attributes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

HasAttributes

func (o *UpdateReferralBatch) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

SetAttributes

func (o *UpdateReferralBatch) SetAttributes(v map[string]interface{})

SetAttributes gets a reference to the given map[string]interface{} and assigns it to the Attributes field.

GetBatchID

func (o *UpdateReferralBatch) GetBatchID() string

GetBatchID returns the BatchID field if non-nil, zero value otherwise.

GetBatchIDOk

func (o *UpdateReferralBatch) GetBatchIDOk() (string, bool)

GetBatchIDOk returns a tuple with the BatchID field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

HasBatchID

func (o *UpdateReferralBatch) HasBatchID() bool

HasBatchID returns a boolean if a field has been set.

SetBatchID

func (o *UpdateReferralBatch) SetBatchID(v string)

SetBatchID gets a reference to the given string and assigns it to the BatchID field.

GetStartDate

func (o *UpdateReferralBatch) GetStartDate() time.Time

GetStartDate returns the StartDate field if non-nil, zero value otherwise.

GetStartDateOk

func (o *UpdateReferralBatch) GetStartDateOk() (time.Time, bool)

GetStartDateOk returns a tuple with the StartDate field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

HasStartDate

func (o *UpdateReferralBatch) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

SetStartDate

func (o *UpdateReferralBatch) SetStartDate(v time.Time)

SetStartDate gets a reference to the given time.Time and assigns it to the StartDate field.

GetExpiryDate

func (o *UpdateReferralBatch) GetExpiryDate() time.Time

GetExpiryDate returns the ExpiryDate field if non-nil, zero value otherwise.

GetExpiryDateOk

func (o *UpdateReferralBatch) GetExpiryDateOk() (time.Time, bool)

GetExpiryDateOk returns a tuple with the ExpiryDate field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

HasExpiryDate

func (o *UpdateReferralBatch) HasExpiryDate() bool

HasExpiryDate returns a boolean if a field has been set.

SetExpiryDate

func (o *UpdateReferralBatch) SetExpiryDate(v time.Time)

SetExpiryDate gets a reference to the given time.Time and assigns it to the ExpiryDate field.

GetUsageLimit

func (o *UpdateReferralBatch) GetUsageLimit() int32

GetUsageLimit returns the UsageLimit field if non-nil, zero value otherwise.

GetUsageLimitOk

func (o *UpdateReferralBatch) GetUsageLimitOk() (int32, bool)

GetUsageLimitOk returns a tuple with the UsageLimit field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

HasUsageLimit

func (o *UpdateReferralBatch) HasUsageLimit() bool

HasUsageLimit returns a boolean if a field has been set.

SetUsageLimit

func (o *UpdateReferralBatch) SetUsageLimit(v int32)

SetUsageLimit gets a reference to the given int32 and assigns it to the UsageLimit field.

[Back to Model list] [Back to API list] [Back to README]