Skip to content

Latest commit

 

History

History
91 lines (48 loc) · 2.7 KB

LoyaltyProgramEntity.md

File metadata and controls

91 lines (48 loc) · 2.7 KB

LoyaltyProgramEntity

Properties

Name Type Description Notes
ProgramID Pointer to int32 The ID of the loyalty program that owns this entity.
ProgramName Pointer to string The integration name of the loyalty program that owns this entity. [optional]
ProgramTitle Pointer to string The Campaign Manager-displayed name of the loyalty program that owns this entity. [optional]

Methods

GetProgramID

func (o *LoyaltyProgramEntity) GetProgramID() int32

GetProgramID returns the ProgramID field if non-nil, zero value otherwise.

GetProgramIDOk

func (o *LoyaltyProgramEntity) GetProgramIDOk() (int32, bool)

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

HasProgramID

func (o *LoyaltyProgramEntity) HasProgramID() bool

HasProgramID returns a boolean if a field has been set.

SetProgramID

func (o *LoyaltyProgramEntity) SetProgramID(v int32)

SetProgramID gets a reference to the given int32 and assigns it to the ProgramID field.

GetProgramName

func (o *LoyaltyProgramEntity) GetProgramName() string

GetProgramName returns the ProgramName field if non-nil, zero value otherwise.

GetProgramNameOk

func (o *LoyaltyProgramEntity) GetProgramNameOk() (string, bool)

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

HasProgramName

func (o *LoyaltyProgramEntity) HasProgramName() bool

HasProgramName returns a boolean if a field has been set.

SetProgramName

func (o *LoyaltyProgramEntity) SetProgramName(v string)

SetProgramName gets a reference to the given string and assigns it to the ProgramName field.

GetProgramTitle

func (o *LoyaltyProgramEntity) GetProgramTitle() string

GetProgramTitle returns the ProgramTitle field if non-nil, zero value otherwise.

GetProgramTitleOk

func (o *LoyaltyProgramEntity) GetProgramTitleOk() (string, bool)

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

HasProgramTitle

func (o *LoyaltyProgramEntity) HasProgramTitle() bool

HasProgramTitle returns a boolean if a field has been set.

SetProgramTitle

func (o *LoyaltyProgramEntity) SetProgramTitle(v string)

SetProgramTitle gets a reference to the given string and assigns it to the ProgramTitle field.

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