Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 1.99 KB

ClipboardData.md

File metadata and controls

77 lines (42 loc) · 1.99 KB

ClipboardData

Properties

Name Type Description Notes
Value string
Media Pointer to string [optional]

Methods

NewClipboardData

func NewClipboardData(value string, ) *ClipboardData

NewClipboardData instantiates a new ClipboardData 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

NewClipboardDataWithDefaults

func NewClipboardDataWithDefaults() *ClipboardData

NewClipboardDataWithDefaults instantiates a new ClipboardData 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

GetValue

func (o *ClipboardData) GetValue() string

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

func (o *ClipboardData) GetValueOk() (*string, bool)

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

SetValue

func (o *ClipboardData) SetValue(v string)

SetValue sets Value field to given value.

GetMedia

func (o *ClipboardData) GetMedia() string

GetMedia returns the Media field if non-nil, zero value otherwise.

GetMediaOk

func (o *ClipboardData) GetMediaOk() (*string, bool)

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

SetMedia

func (o *ClipboardData) SetMedia(v string)

SetMedia sets Media field to given value.

HasMedia

func (o *ClipboardData) HasMedia() bool

HasMedia returns a boolean if a field has been set.

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