1// Copyright (c) 2016, 2018, 2020, Oracle and/or its affiliates.  All rights reserved.
2// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
3// Code generated. DO NOT EDIT.
4
5// Data Integration API
6//
7// Use the Data Integration Service APIs to perform common extract, load, and transform (ETL) tasks.
8//
9
10package dataintegration
11
12import (
13	"github.com/oracle/oci-go-sdk/common"
14)
15
16// UiProperties The UI properties of the object.
17type UiProperties struct {
18
19	// coordinateX
20	CoordinateX *float32 `mandatory:"false" json:"coordinateX"`
21
22	// coordinateY
23	CoordinateY *float32 `mandatory:"false" json:"coordinateY"`
24}
25
26func (m UiProperties) String() string {
27	return common.PointerString(m)
28}
29