Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 1.75 KB

PodDto.md

File metadata and controls

72 lines (39 loc) · 1.75 KB

PodDto

Properties

Name Type Description Notes
Name string
Ports []int32

Methods

NewPodDto

func NewPodDto(name string, ports []int32, ) *PodDto

NewPodDto instantiates a new PodDto 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

NewPodDtoWithDefaults

func NewPodDtoWithDefaults() *PodDto

NewPodDtoWithDefaults instantiates a new PodDto 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

GetName

func (o *PodDto) GetName() string

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

GetNameOk

func (o *PodDto) 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 *PodDto) SetName(v string)

SetName sets Name field to given value.

GetPorts

func (o *PodDto) GetPorts() []int32

GetPorts returns the Ports field if non-nil, zero value otherwise.

GetPortsOk

func (o *PodDto) GetPortsOk() (*[]int32, bool)

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

SetPorts

func (o *PodDto) SetPorts(v []int32)

SetPorts sets Ports field to given value.

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