| Name | Type | Description | Notes |
|---|---|---|---|
| Filename | Pointer to NullableString | Attachment file name | [optional] |
| Attachment | Pointer to *os.File | Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] | [optional] |
func NewAttachment() *Attachment
NewAttachment instantiates a new Attachment 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 NewAttachmentWithDefaults() *Attachment
NewAttachmentWithDefaults instantiates a new Attachment 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 *Attachment) GetFilename() string
GetFilename returns the Filename field if non-nil, zero value otherwise.
func (o *Attachment) GetFilenameOk() (*string, bool)
GetFilenameOk returns a tuple with the Filename field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Attachment) SetFilename(v string)
SetFilename sets Filename field to given value.
func (o *Attachment) HasFilename() bool
HasFilename returns a boolean if a field has been set.
func (o *Attachment) SetFilenameNil(b bool)
SetFilenameNil sets the value for Filename to be an explicit nil
func (o *Attachment) UnsetFilename()
UnsetFilename ensures that no value is present for Filename, not even an explicit nil
func (o *Attachment) GetAttachment() *os.File
GetAttachment returns the Attachment field if non-nil, zero value otherwise.
func (o *Attachment) GetAttachmentOk() (**os.File, bool)
GetAttachmentOk returns a tuple with the Attachment field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Attachment) SetAttachment(v *os.File)
SetAttachment sets Attachment field to given value.
func (o *Attachment) HasAttachment() bool
HasAttachment returns a boolean if a field has been set.