Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 1.83 KB

Coordinate.md

File metadata and controls

72 lines (39 loc) · 1.83 KB

Coordinate

Properties

Name Type Description Notes
XCord int32 [readonly]
YCord int32 [readonly]

Methods

NewCoordinate

func NewCoordinate(xCord int32, yCord int32, ) *Coordinate

NewCoordinate instantiates a new Coordinate 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

NewCoordinateWithDefaults

func NewCoordinateWithDefaults() *Coordinate

NewCoordinateWithDefaults instantiates a new Coordinate 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

GetXCord

func (o *Coordinate) GetXCord() int32

GetXCord returns the XCord field if non-nil, zero value otherwise.

GetXCordOk

func (o *Coordinate) GetXCordOk() (*int32, bool)

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

SetXCord

func (o *Coordinate) SetXCord(v int32)

SetXCord sets XCord field to given value.

GetYCord

func (o *Coordinate) GetYCord() int32

GetYCord returns the YCord field if non-nil, zero value otherwise.

GetYCordOk

func (o *Coordinate) GetYCordOk() (*int32, bool)

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

SetYCord

func (o *Coordinate) SetYCord(v int32)

SetYCord sets YCord field to given value.

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