Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 3.14 KB

File metadata and controls

93 lines (50 loc) · 3.14 KB

ExpiringCardPointsNotification

Properties

Name Type Description Notes
TotalResultSize Pointer to int64
Data Pointer to []ExpiringCardPointsData The array of expiring points.
NotificationType Pointer to string The type of notification.

Methods

NewExpiringCardPointsNotification

func NewExpiringCardPointsNotification(totalResultSize int64, data []ExpiringCardPointsData, notificationType string, ) *ExpiringCardPointsNotification

NewExpiringCardPointsNotification instantiates a new ExpiringCardPointsNotification 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

NewExpiringCardPointsNotificationWithDefaults

func NewExpiringCardPointsNotificationWithDefaults() *ExpiringCardPointsNotification

NewExpiringCardPointsNotificationWithDefaults instantiates a new ExpiringCardPointsNotification 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

GetTotalResultSize

func (o *ExpiringCardPointsNotification) GetTotalResultSize() int64

GetTotalResultSize returns the TotalResultSize field if non-nil, zero value otherwise.

GetTotalResultSizeOk

func (o *ExpiringCardPointsNotification) GetTotalResultSizeOk() (*int64, bool)

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

SetTotalResultSize

func (o *ExpiringCardPointsNotification) SetTotalResultSize(v int64)

SetTotalResultSize sets TotalResultSize field to given value.

GetData

func (o *ExpiringCardPointsNotification) GetData() []ExpiringCardPointsData

GetData returns the Data field if non-nil, zero value otherwise.

GetDataOk

func (o *ExpiringCardPointsNotification) GetDataOk() (*[]ExpiringCardPointsData, bool)

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

SetData

func (o *ExpiringCardPointsNotification) SetData(v []ExpiringCardPointsData)

SetData sets Data field to given value.

GetNotificationType

func (o *ExpiringCardPointsNotification) GetNotificationType() string

GetNotificationType returns the NotificationType field if non-nil, zero value otherwise.

GetNotificationTypeOk

func (o *ExpiringCardPointsNotification) GetNotificationTypeOk() (*string, bool)

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

SetNotificationType

func (o *ExpiringCardPointsNotification) SetNotificationType(v string)

SetNotificationType sets NotificationType field to given value.

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