| Name | Type | Description | Notes |
|---|---|---|---|
| Data | map[string]string | The data object containing the configuration details of the virtual machine profile being created. | |
| Description | Pointer to string | The optional description for the profile being created. | [optional] |
| Name | string | The name of the profile being created. |
func NewCreateProfilePayload(data map[string]string, name string, ) *CreateProfilePayload
NewCreateProfilePayload instantiates a new CreateProfilePayload 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 NewCreateProfilePayloadWithDefaults() *CreateProfilePayload
NewCreateProfilePayloadWithDefaults instantiates a new CreateProfilePayload 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 *CreateProfilePayload) GetData() map[string]string
GetData returns the Data field if non-nil, zero value otherwise.
func (o *CreateProfilePayload) GetDataOk() (*map[string]string, bool)
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateProfilePayload) SetData(v map[string]string)
SetData sets Data field to given value.
func (o *CreateProfilePayload) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *CreateProfilePayload) 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 *CreateProfilePayload) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *CreateProfilePayload) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *CreateProfilePayload) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *CreateProfilePayload) 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 *CreateProfilePayload) SetName(v string)
SetName sets Name field to given value.