Skip to content

Latest commit

 

History

History
175 lines (96 loc) · 4.9 KB

CreateReactorRequest.md

File metadata and controls

175 lines (96 loc) · 4.9 KB

CreateReactorRequest

Properties

Name Type Description Notes
Name string
Formula Pointer to ReactorFormula [optional]
Code Pointer to NullableString [optional]
Application Pointer to Application [optional]
Configuration Pointer to map[string]string [optional]

Methods

NewCreateReactorRequest

func NewCreateReactorRequest(name string, ) *CreateReactorRequest

NewCreateReactorRequest instantiates a new CreateReactorRequest 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

NewCreateReactorRequestWithDefaults

func NewCreateReactorRequestWithDefaults() *CreateReactorRequest

NewCreateReactorRequestWithDefaults instantiates a new CreateReactorRequest 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

GetName

func (o *CreateReactorRequest) GetName() string

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

GetNameOk

func (o *CreateReactorRequest) 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 *CreateReactorRequest) SetName(v string)

SetName sets Name field to given value.

GetFormula

func (o *CreateReactorRequest) GetFormula() ReactorFormula

GetFormula returns the Formula field if non-nil, zero value otherwise.

GetFormulaOk

func (o *CreateReactorRequest) GetFormulaOk() (*ReactorFormula, bool)

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

SetFormula

func (o *CreateReactorRequest) SetFormula(v ReactorFormula)

SetFormula sets Formula field to given value.

HasFormula

func (o *CreateReactorRequest) HasFormula() bool

HasFormula returns a boolean if a field has been set.

GetCode

func (o *CreateReactorRequest) GetCode() string

GetCode returns the Code field if non-nil, zero value otherwise.

GetCodeOk

func (o *CreateReactorRequest) GetCodeOk() (*string, bool)

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

SetCode

func (o *CreateReactorRequest) SetCode(v string)

SetCode sets Code field to given value.

HasCode

func (o *CreateReactorRequest) HasCode() bool

HasCode returns a boolean if a field has been set.

SetCodeNil

func (o *CreateReactorRequest) SetCodeNil(b bool)

SetCodeNil sets the value for Code to be an explicit nil

UnsetCode

func (o *CreateReactorRequest) UnsetCode()

UnsetCode ensures that no value is present for Code, not even an explicit nil

GetApplication

func (o *CreateReactorRequest) GetApplication() Application

GetApplication returns the Application field if non-nil, zero value otherwise.

GetApplicationOk

func (o *CreateReactorRequest) GetApplicationOk() (*Application, bool)

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

SetApplication

func (o *CreateReactorRequest) SetApplication(v Application)

SetApplication sets Application field to given value.

HasApplication

func (o *CreateReactorRequest) HasApplication() bool

HasApplication returns a boolean if a field has been set.

GetConfiguration

func (o *CreateReactorRequest) GetConfiguration() map[string]string

GetConfiguration returns the Configuration field if non-nil, zero value otherwise.

GetConfigurationOk

func (o *CreateReactorRequest) GetConfigurationOk() (*map[string]string, bool)

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

SetConfiguration

func (o *CreateReactorRequest) SetConfiguration(v map[string]string)

SetConfiguration sets Configuration field to given value.

HasConfiguration

func (o *CreateReactorRequest) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

SetConfigurationNil

func (o *CreateReactorRequest) SetConfigurationNil(b bool)

SetConfigurationNil sets the value for Configuration to be an explicit nil

UnsetConfiguration

func (o *CreateReactorRequest) UnsetConfiguration()

UnsetConfiguration ensures that no value is present for Configuration, not even an explicit nil

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