| Name | Type | Description | Notes |
|---|---|---|---|
| NotificationType | Pointer to string | The type of notification that should be shown (e.g. error/warning/info). | |
| Title | Pointer to string | Title of the notification. | |
| Body | Pointer to string | Body of the notification. |
func NewShowNotificationEffectProps(notificationType string, title string, body string, ) *ShowNotificationEffectProps
NewShowNotificationEffectProps instantiates a new ShowNotificationEffectProps 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 NewShowNotificationEffectPropsWithDefaults() *ShowNotificationEffectProps
NewShowNotificationEffectPropsWithDefaults instantiates a new ShowNotificationEffectProps 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 *ShowNotificationEffectProps) GetNotificationType() string
GetNotificationType returns the NotificationType field if non-nil, zero value otherwise.
func (o *ShowNotificationEffectProps) 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.
func (o *ShowNotificationEffectProps) SetNotificationType(v string)
SetNotificationType sets NotificationType field to given value.
func (o *ShowNotificationEffectProps) GetTitle() string
GetTitle returns the Title field if non-nil, zero value otherwise.
func (o *ShowNotificationEffectProps) GetTitleOk() (*string, bool)
GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ShowNotificationEffectProps) SetTitle(v string)
SetTitle sets Title field to given value.
func (o *ShowNotificationEffectProps) GetBody() string
GetBody returns the Body field if non-nil, zero value otherwise.
func (o *ShowNotificationEffectProps) GetBodyOk() (*string, bool)
GetBodyOk returns a tuple with the Body field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ShowNotificationEffectProps) SetBody(v string)
SetBody sets Body field to given value.