| Name | Type | Description | Notes |
|---|---|---|---|
| Name | string | The experiment name | |
| Description | Pointer to string | The experiment description | [optional] |
| MaintainerId | string | The ID of the member who maintains this experiment. | |
| Key | string | The experiment key | |
| Iteration | IterationInput |
func NewExperimentPost(name string, maintainerId string, key string, iteration IterationInput, ) *ExperimentPost
NewExperimentPost instantiates a new ExperimentPost 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 NewExperimentPostWithDefaults() *ExperimentPost
NewExperimentPostWithDefaults instantiates a new ExperimentPost 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 *ExperimentPost) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *ExperimentPost) 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 *ExperimentPost) SetName(v string)
SetName sets Name field to given value.
func (o *ExperimentPost) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *ExperimentPost) 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.
func (o *ExperimentPost) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *ExperimentPost) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *ExperimentPost) GetMaintainerId() string
GetMaintainerId returns the MaintainerId field if non-nil, zero value otherwise.
func (o *ExperimentPost) GetMaintainerIdOk() (*string, bool)
GetMaintainerIdOk returns a tuple with the MaintainerId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ExperimentPost) SetMaintainerId(v string)
SetMaintainerId sets MaintainerId field to given value.
func (o *ExperimentPost) GetKey() string
GetKey returns the Key field if non-nil, zero value otherwise.
func (o *ExperimentPost) GetKeyOk() (*string, bool)
GetKeyOk returns a tuple with the Key field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ExperimentPost) SetKey(v string)
SetKey sets Key field to given value.
func (o *ExperimentPost) GetIteration() IterationInput
GetIteration returns the Iteration field if non-nil, zero value otherwise.
func (o *ExperimentPost) GetIterationOk() (*IterationInput, bool)
GetIterationOk returns a tuple with the Iteration field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ExperimentPost) SetIteration(v IterationInput)
SetIteration sets Iteration field to given value.