Skip to content

Latest commit

 

History

History
97 lines (54 loc) · 2.71 KB

VirtualInterface.md

File metadata and controls

97 lines (54 loc) · 2.71 KB

VirtualInterface

Properties

Name Type Description Notes
Description string Description of the interface.
Name string Unique ID of the virtual interface.
Title string Human readable name of the virtual interface.

Methods

NewVirtualInterface

func NewVirtualInterface(description string, name string, title string, ) *VirtualInterface

NewVirtualInterface instantiates a new VirtualInterface 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

NewVirtualInterfaceWithDefaults

func NewVirtualInterfaceWithDefaults() *VirtualInterface

NewVirtualInterfaceWithDefaults instantiates a new VirtualInterface 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

GetDescription

func (o *VirtualInterface) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *VirtualInterface) 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.

SetDescription

func (o *VirtualInterface) SetDescription(v string)

SetDescription sets Description field to given value.

GetName

func (o *VirtualInterface) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *VirtualInterface) 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.

SetName

func (o *VirtualInterface) SetName(v string)

SetName sets Name field to given value.

GetTitle

func (o *VirtualInterface) GetTitle() string

GetTitle returns the Title field if non-nil, zero value otherwise.

GetTitleOk

func (o *VirtualInterface) GetTitleOk() (*string, bool)

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

SetTitle

func (o *VirtualInterface) SetTitle(v string)

SetTitle sets Title field to given value.

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