| Name | Type | Description | Notes |
|---|---|---|---|
| Size | Pointer to string | [optional] | |
| Color | Pointer to string | [optional] |
func NewBird() *Bird
NewBird instantiates a new Bird 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 NewBirdWithDefaults() *Bird
NewBirdWithDefaults instantiates a new Bird 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 *Bird) GetSize() string
GetSize returns the Size field if non-nil, zero value otherwise.
func (o *Bird) GetSizeOk() (*string, bool)
GetSizeOk returns a tuple with the Size field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Bird) SetSize(v string)
SetSize sets Size field to given value.
func (o *Bird) HasSize() bool
HasSize returns a boolean if a field has been set.
func (o *Bird) GetColor() string
GetColor returns the Color field if non-nil, zero value otherwise.
func (o *Bird) GetColorOk() (*string, bool)
GetColorOk returns a tuple with the Color field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Bird) SetColor(v string)
SetColor sets Color field to given value.
func (o *Bird) HasColor() bool
HasColor returns a boolean if a field has been set.