ru.tinkoff.piapi.contract.v1.OperationTradeOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: operations.proto
package ru.tinkoff.piapi.contract.v1;
public interface OperationTradeOrBuilder extends
// @@protoc_insertion_point(interface_extends:tinkoff.public.invest.api.contract.v1.OperationTrade)
com.google.protobuf.MessageOrBuilder {
/**
*
*Идентификатор сделки.
*
*
* string trade_id = 1;
* @return The tradeId.
*/
java.lang.String getTradeId();
/**
*
*Идентификатор сделки.
*
*
* string trade_id = 1;
* @return The bytes for tradeId.
*/
com.google.protobuf.ByteString
getTradeIdBytes();
/**
*
*Дата и время сделки в часовом поясе UTC.
*
*
* .google.protobuf.Timestamp date_time = 2;
* @return Whether the dateTime field is set.
*/
boolean hasDateTime();
/**
*
*Дата и время сделки в часовом поясе UTC.
*
*
* .google.protobuf.Timestamp date_time = 2;
* @return The dateTime.
*/
com.google.protobuf.Timestamp getDateTime();
/**
*
*Дата и время сделки в часовом поясе UTC.
*
*
* .google.protobuf.Timestamp date_time = 2;
*/
com.google.protobuf.TimestampOrBuilder getDateTimeOrBuilder();
/**
*
*Количество инструментов.
*
*
* int64 quantity = 3;
* @return The quantity.
*/
long getQuantity();
/**
*
*Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента.
*
*
* .tinkoff.public.invest.api.contract.v1.MoneyValue price = 4;
* @return Whether the price field is set.
*/
boolean hasPrice();
/**
*
*Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента.
*
*
* .tinkoff.public.invest.api.contract.v1.MoneyValue price = 4;
* @return The price.
*/
ru.tinkoff.piapi.contract.v1.MoneyValue getPrice();
/**
*
*Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента.
*
*
* .tinkoff.public.invest.api.contract.v1.MoneyValue price = 4;
*/
ru.tinkoff.piapi.contract.v1.MoneyValueOrBuilder getPriceOrBuilder();
}