Skip to content

Latest commit

 

History

History
128 lines (71 loc) · 3.91 KB

File metadata and controls

128 lines (71 loc) · 3.91 KB

CreateNotificationSuccessResponse

Properties

Name Type Description Notes
Id Pointer to string [optional]
ExternalId Pointer to NullableString [optional]
Errors Pointer to interface{} Errors include the identifiers that are invalid, or that there are no subscribers. [optional]

Methods

NewCreateNotificationSuccessResponse

func NewCreateNotificationSuccessResponse() *CreateNotificationSuccessResponse

NewCreateNotificationSuccessResponse instantiates a new CreateNotificationSuccessResponse 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

NewCreateNotificationSuccessResponseWithDefaults

func NewCreateNotificationSuccessResponseWithDefaults() *CreateNotificationSuccessResponse

NewCreateNotificationSuccessResponseWithDefaults instantiates a new CreateNotificationSuccessResponse 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

GetId

func (o *CreateNotificationSuccessResponse) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *CreateNotificationSuccessResponse) GetIdOk() (*string, bool)

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

SetId

func (o *CreateNotificationSuccessResponse) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *CreateNotificationSuccessResponse) HasId() bool

HasId returns a boolean if a field has been set.

GetExternalId

func (o *CreateNotificationSuccessResponse) GetExternalId() string

GetExternalId returns the ExternalId field if non-nil, zero value otherwise.

GetExternalIdOk

func (o *CreateNotificationSuccessResponse) GetExternalIdOk() (*string, bool)

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

SetExternalId

func (o *CreateNotificationSuccessResponse) SetExternalId(v string)

SetExternalId sets ExternalId field to given value.

HasExternalId

func (o *CreateNotificationSuccessResponse) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

SetExternalIdNil

func (o *CreateNotificationSuccessResponse) SetExternalIdNil(b bool)

SetExternalIdNil sets the value for ExternalId to be an explicit nil

UnsetExternalId

func (o *CreateNotificationSuccessResponse) UnsetExternalId()

UnsetExternalId ensures that no value is present for ExternalId, not even an explicit nil

GetErrors

func (o *CreateNotificationSuccessResponse) GetErrors() interface{}

GetErrors returns the Errors field if non-nil, zero value otherwise.

GetErrorsOk

func (o *CreateNotificationSuccessResponse) GetErrorsOk() (*interface{}, bool)

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

SetErrors

func (o *CreateNotificationSuccessResponse) SetErrors(v interface{})

SetErrors sets Errors field to given value.

HasErrors

func (o *CreateNotificationSuccessResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

SetErrorsNil

func (o *CreateNotificationSuccessResponse) SetErrorsNil(b bool)

SetErrorsNil sets the value for Errors to be an explicit nil

UnsetErrors

func (o *CreateNotificationSuccessResponse) UnsetErrors()

UnsetErrors ensures that no value is present for Errors, not even an explicit nil

[Back to API list] [Back to README]