/* * Gate API v4 * * Welcome to Gate.io API APIv4 provides spot, margin and futures trading operations. There are public APIs to retrieve the real-time market statistics, and private APIs which needs authentication to trade on user's behalf. * * Contact: support@mail.gate.io * Generated by: OpenAPI Generator (https://openapi-generator.tech) */ package gateapi type CollateralAlign struct { // Order ID OrderId int64 `json:"order_id"` // Collateral CollateralCurrency string `json:"collateral_currency"` // Collateral amount CollateralAmount string `json:"collateral_amount"` // Operation types: append - for adding collateral, redeem - for withdrawing collateral Type string `json:"type"` }