ru.tinkoff.piapi.contract.v1.ReplaceOrderRequestOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: orders.proto
package ru.tinkoff.piapi.contract.v1;
public interface ReplaceOrderRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:tinkoff.public.invest.api.contract.v1.ReplaceOrderRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*Номер счета.
*
*
* string account_id = 1;
* @return The accountId.
*/
java.lang.String getAccountId();
/**
*
*Номер счета.
*
*
* string account_id = 1;
* @return The bytes for accountId.
*/
com.google.protobuf.ByteString
getAccountIdBytes();
/**
*
*Идентификатор заявки на бирже.
*
*
* string order_id = 6;
* @return The orderId.
*/
java.lang.String getOrderId();
/**
*
*Идентификатор заявки на бирже.
*
*
* string order_id = 6;
* @return The bytes for orderId.
*/
com.google.protobuf.ByteString
getOrderIdBytes();
/**
*
*Новый идентификатор запроса выставления поручения для целей идемпотентности. Максимальная длина 36 символов. Перезатирает старый ключ.
*
*
* string idempotency_key = 7;
* @return The idempotencyKey.
*/
java.lang.String getIdempotencyKey();
/**
*
*Новый идентификатор запроса выставления поручения для целей идемпотентности. Максимальная длина 36 символов. Перезатирает старый ключ.
*
*
* string idempotency_key = 7;
* @return The bytes for idempotencyKey.
*/
com.google.protobuf.ByteString
getIdempotencyKeyBytes();
/**
*
*Количество лотов.
*
*
* int64 quantity = 11;
* @return The quantity.
*/
long getQuantity();
/**
*
*Цена за 1 инструмент.
*
*
* .tinkoff.public.invest.api.contract.v1.Quotation price = 12;
* @return Whether the price field is set.
*/
boolean hasPrice();
/**
*
*Цена за 1 инструмент.
*
*
* .tinkoff.public.invest.api.contract.v1.Quotation price = 12;
* @return The price.
*/
ru.tinkoff.piapi.contract.v1.Quotation getPrice();
/**
*
*Цена за 1 инструмент.
*
*
* .tinkoff.public.invest.api.contract.v1.Quotation price = 12;
*/
ru.tinkoff.piapi.contract.v1.QuotationOrBuilder getPriceOrBuilder();
/**
*
*Тип цены.
*
*
* .tinkoff.public.invest.api.contract.v1.PriceType price_type = 13;
* @return The enum numeric value on the wire for priceType.
*/
int getPriceTypeValue();
/**
*
*Тип цены.
*
*
* .tinkoff.public.invest.api.contract.v1.PriceType price_type = 13;
* @return The priceType.
*/
ru.tinkoff.piapi.contract.v1.PriceType getPriceType();
}