Skip to content

Latest commit

 

History

History
103 lines (56 loc) · 3.15 KB

ServiceNow.md

File metadata and controls

103 lines (56 loc) · 3.15 KB

ServiceNow

Properties

Name Type Description Notes
ConnectionId string The identifier of the connection.
ConnectionSubtype Pointer to string The subtype of the connection. Valid values are `Event` or `Incident`. [optional]
PayloadOverride Pointer to string The override of the default JSON payload of the connection. Should be in JSON format. [optional]

Methods

NewServiceNow

func NewServiceNow(connectionId string, ) *ServiceNow

NewServiceNow instantiates a new ServiceNow 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

NewServiceNowWithDefaults

func NewServiceNowWithDefaults() *ServiceNow

NewServiceNowWithDefaults instantiates a new ServiceNow 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

GetConnectionId

func (o *ServiceNow) GetConnectionId() string

GetConnectionId returns the ConnectionId field if non-nil, zero value otherwise.

GetConnectionIdOk

func (o *ServiceNow) GetConnectionIdOk() (*string, bool)

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

SetConnectionId

func (o *ServiceNow) SetConnectionId(v string)

SetConnectionId sets ConnectionId field to given value.

GetConnectionSubtype

func (o *ServiceNow) GetConnectionSubtype() string

GetConnectionSubtype returns the ConnectionSubtype field if non-nil, zero value otherwise.

GetConnectionSubtypeOk

func (o *ServiceNow) GetConnectionSubtypeOk() (*string, bool)

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

SetConnectionSubtype

func (o *ServiceNow) SetConnectionSubtype(v string)

SetConnectionSubtype sets ConnectionSubtype field to given value.

HasConnectionSubtype

func (o *ServiceNow) HasConnectionSubtype() bool

HasConnectionSubtype returns a boolean if a field has been set.

GetPayloadOverride

func (o *ServiceNow) GetPayloadOverride() string

GetPayloadOverride returns the PayloadOverride field if non-nil, zero value otherwise.

GetPayloadOverrideOk

func (o *ServiceNow) GetPayloadOverrideOk() (*string, bool)

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

SetPayloadOverride

func (o *ServiceNow) SetPayloadOverride(v string)

SetPayloadOverride sets PayloadOverride field to given value.

HasPayloadOverride

func (o *ServiceNow) HasPayloadOverride() bool

HasPayloadOverride returns a boolean if a field has been set.

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