Skip to content

Latest commit

 

History

History
98 lines (53 loc) · 2.73 KB

RuleCategoryUpdate.md

File metadata and controls

98 lines (53 loc) · 2.73 KB

RuleCategoryUpdate

Properties

Name Type Description Notes
Parent string The parent category of the rules
Name string Name of the rule category
Description Pointer to string Rules category description [optional]

Methods

NewRuleCategoryUpdate

func NewRuleCategoryUpdate(parent string, name string, ) *RuleCategoryUpdate

NewRuleCategoryUpdate instantiates a new RuleCategoryUpdate 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

NewRuleCategoryUpdateWithDefaults

func NewRuleCategoryUpdateWithDefaults() *RuleCategoryUpdate

NewRuleCategoryUpdateWithDefaults instantiates a new RuleCategoryUpdate 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

GetParent

func (o *RuleCategoryUpdate) GetParent() string

GetParent returns the Parent field if non-nil, zero value otherwise.

GetParentOk

func (o *RuleCategoryUpdate) GetParentOk() (*string, bool)

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

SetParent

func (o *RuleCategoryUpdate) SetParent(v string)

SetParent sets Parent field to given value.

GetName

func (o *RuleCategoryUpdate) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *RuleCategoryUpdate) 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.

SetName

func (o *RuleCategoryUpdate) SetName(v string)

SetName sets Name field to given value.

GetDescription

func (o *RuleCategoryUpdate) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *RuleCategoryUpdate) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *RuleCategoryUpdate) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *RuleCategoryUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

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