Name | Type | Description | Notes |
---|---|---|---|
Pk | string | [readonly] | |
Name | string | ||
Transports | Pointer to []string | Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI. | [optional] |
Severity | Pointer to SeverityEnum | Controls which severity level the created notifications will have. | [optional] |
Group | Pointer to NullableString | Define which group of users this notification should be sent and shown to. If left empty, Notification won't ben sent. | [optional] |
GroupObj | Group | [readonly] |
func NewNotificationRule(pk string, name string, groupObj Group, ) *NotificationRule
NewNotificationRule instantiates a new NotificationRule 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 NewNotificationRuleWithDefaults() *NotificationRule
NewNotificationRuleWithDefaults instantiates a new NotificationRule 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 *NotificationRule) GetPk() string
GetPk returns the Pk field if non-nil, zero value otherwise.
func (o *NotificationRule) GetPkOk() (*string, bool)
GetPkOk returns a tuple with the Pk field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *NotificationRule) SetPk(v string)
SetPk sets Pk field to given value.
func (o *NotificationRule) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *NotificationRule) 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 *NotificationRule) SetName(v string)
SetName sets Name field to given value.
func (o *NotificationRule) GetTransports() []string
GetTransports returns the Transports field if non-nil, zero value otherwise.
func (o *NotificationRule) GetTransportsOk() (*[]string, bool)
GetTransportsOk returns a tuple with the Transports field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *NotificationRule) SetTransports(v []string)
SetTransports sets Transports field to given value.
func (o *NotificationRule) HasTransports() bool
HasTransports returns a boolean if a field has been set.
func (o *NotificationRule) GetSeverity() SeverityEnum
GetSeverity returns the Severity field if non-nil, zero value otherwise.
func (o *NotificationRule) GetSeverityOk() (*SeverityEnum, bool)
GetSeverityOk returns a tuple with the Severity field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *NotificationRule) SetSeverity(v SeverityEnum)
SetSeverity sets Severity field to given value.
func (o *NotificationRule) HasSeverity() bool
HasSeverity returns a boolean if a field has been set.
func (o *NotificationRule) GetGroup() string
GetGroup returns the Group field if non-nil, zero value otherwise.
func (o *NotificationRule) GetGroupOk() (*string, bool)
GetGroupOk returns a tuple with the Group field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *NotificationRule) SetGroup(v string)
SetGroup sets Group field to given value.
func (o *NotificationRule) HasGroup() bool
HasGroup returns a boolean if a field has been set.
func (o *NotificationRule) SetGroupNil(b bool)
SetGroupNil sets the value for Group to be an explicit nil
func (o *NotificationRule) UnsetGroup()
UnsetGroup ensures that no value is present for Group, not even an explicit nil
func (o *NotificationRule) GetGroupObj() Group
GetGroupObj returns the GroupObj field if non-nil, zero value otherwise.
func (o *NotificationRule) GetGroupObjOk() (*Group, bool)
GetGroupObjOk returns a tuple with the GroupObj field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *NotificationRule) SetGroupObj(v Group)
SetGroupObj sets GroupObj field to given value.