Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 1.87 KB

PointDTO.md

File metadata and controls

82 lines (45 loc) · 1.87 KB

PointDTO

Properties

Name Type Description Notes
X Pointer to int64 [optional]
Y Pointer to int64 [optional]

Methods

NewPointDTO

func NewPointDTO() *PointDTO

NewPointDTO instantiates a new PointDTO 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

NewPointDTOWithDefaults

func NewPointDTOWithDefaults() *PointDTO

NewPointDTOWithDefaults instantiates a new PointDTO 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

GetX

func (o *PointDTO) GetX() int64

GetX returns the X field if non-nil, zero value otherwise.

GetXOk

func (o *PointDTO) GetXOk() (*int64, bool)

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

SetX

func (o *PointDTO) SetX(v int64)

SetX sets X field to given value.

HasX

func (o *PointDTO) HasX() bool

HasX returns a boolean if a field has been set.

GetY

func (o *PointDTO) GetY() int64

GetY returns the Y field if non-nil, zero value otherwise.

GetYOk

func (o *PointDTO) GetYOk() (*int64, bool)

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

SetY

func (o *PointDTO) SetY(v int64)

SetY sets Y field to given value.

HasY

func (o *PointDTO) HasY() bool

HasY returns a boolean if a field has been set.

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