All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.tinkoff.piapi.contract.v1.Trade Maven / Gradle / Ivy

There is a newer version: 1.25
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: marketdata.proto

package ru.tinkoff.piapi.contract.v1;

/**
 * 
 *Информация о сделке.
 * 
* * Protobuf type {@code tinkoff.public.invest.api.contract.v1.Trade} */ public final class Trade extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:tinkoff.public.invest.api.contract.v1.Trade) TradeOrBuilder { private static final long serialVersionUID = 0L; // Use Trade.newBuilder() to construct. private Trade(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private Trade() { figi_ = ""; direction_ = 0; instrumentUid_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new Trade(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return ru.tinkoff.piapi.contract.v1.Marketdata.internal_static_tinkoff_public_invest_api_contract_v1_Trade_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return ru.tinkoff.piapi.contract.v1.Marketdata.internal_static_tinkoff_public_invest_api_contract_v1_Trade_fieldAccessorTable .ensureFieldAccessorsInitialized( ru.tinkoff.piapi.contract.v1.Trade.class, ru.tinkoff.piapi.contract.v1.Trade.Builder.class); } public static final int FIGI_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object figi_ = ""; /** *
   *Figi-идентификатор инструмента.
   * 
* * string figi = 1; * @return The figi. */ @java.lang.Override public java.lang.String getFigi() { java.lang.Object ref = figi_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); figi_ = s; return s; } } /** *
   *Figi-идентификатор инструмента.
   * 
* * string figi = 1; * @return The bytes for figi. */ @java.lang.Override public com.google.protobuf.ByteString getFigiBytes() { java.lang.Object ref = figi_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); figi_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int DIRECTION_FIELD_NUMBER = 2; private int direction_ = 0; /** *
   *Направление сделки.
   * 
* * .tinkoff.public.invest.api.contract.v1.TradeDirection direction = 2; * @return The enum numeric value on the wire for direction. */ @java.lang.Override public int getDirectionValue() { return direction_; } /** *
   *Направление сделки.
   * 
* * .tinkoff.public.invest.api.contract.v1.TradeDirection direction = 2; * @return The direction. */ @java.lang.Override public ru.tinkoff.piapi.contract.v1.TradeDirection getDirection() { ru.tinkoff.piapi.contract.v1.TradeDirection result = ru.tinkoff.piapi.contract.v1.TradeDirection.forNumber(direction_); return result == null ? ru.tinkoff.piapi.contract.v1.TradeDirection.UNRECOGNIZED : result; } public static final int PRICE_FIELD_NUMBER = 3; private ru.tinkoff.piapi.contract.v1.Quotation price_; /** *
   *Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента. Для перевод цен в валюту рекомендуем использовать [информацию со страницы](https://russianinvestments.github.io/investAPI/faq_marketdata/)
   * 
* * .tinkoff.public.invest.api.contract.v1.Quotation price = 3; * @return Whether the price field is set. */ @java.lang.Override public boolean hasPrice() { return price_ != null; } /** *
   *Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента. Для перевод цен в валюту рекомендуем использовать [информацию со страницы](https://russianinvestments.github.io/investAPI/faq_marketdata/)
   * 
* * .tinkoff.public.invest.api.contract.v1.Quotation price = 3; * @return The price. */ @java.lang.Override public ru.tinkoff.piapi.contract.v1.Quotation getPrice() { return price_ == null ? ru.tinkoff.piapi.contract.v1.Quotation.getDefaultInstance() : price_; } /** *
   *Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента. Для перевод цен в валюту рекомендуем использовать [информацию со страницы](https://russianinvestments.github.io/investAPI/faq_marketdata/)
   * 
* * .tinkoff.public.invest.api.contract.v1.Quotation price = 3; */ @java.lang.Override public ru.tinkoff.piapi.contract.v1.QuotationOrBuilder getPriceOrBuilder() { return price_ == null ? ru.tinkoff.piapi.contract.v1.Quotation.getDefaultInstance() : price_; } public static final int QUANTITY_FIELD_NUMBER = 4; private long quantity_ = 0L; /** *
   *Количество лотов.
   * 
* * int64 quantity = 4; * @return The quantity. */ @java.lang.Override public long getQuantity() { return quantity_; } public static final int TIME_FIELD_NUMBER = 5; private com.google.protobuf.Timestamp time_; /** *
   *Время сделки в часовом поясе UTC по времени биржи.
   * 
* * .google.protobuf.Timestamp time = 5; * @return Whether the time field is set. */ @java.lang.Override public boolean hasTime() { return time_ != null; } /** *
   *Время сделки в часовом поясе UTC по времени биржи.
   * 
* * .google.protobuf.Timestamp time = 5; * @return The time. */ @java.lang.Override public com.google.protobuf.Timestamp getTime() { return time_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : time_; } /** *
   *Время сделки в часовом поясе UTC по времени биржи.
   * 
* * .google.protobuf.Timestamp time = 5; */ @java.lang.Override public com.google.protobuf.TimestampOrBuilder getTimeOrBuilder() { return time_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : time_; } public static final int INSTRUMENT_UID_FIELD_NUMBER = 6; @SuppressWarnings("serial") private volatile java.lang.Object instrumentUid_ = ""; /** *
   *Uid инструмента
   * 
* * string instrument_uid = 6; * @return The instrumentUid. */ @java.lang.Override public java.lang.String getInstrumentUid() { java.lang.Object ref = instrumentUid_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); instrumentUid_ = s; return s; } } /** *
   *Uid инструмента
   * 
* * string instrument_uid = 6; * @return The bytes for instrumentUid. */ @java.lang.Override public com.google.protobuf.ByteString getInstrumentUidBytes() { java.lang.Object ref = instrumentUid_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); instrumentUid_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(figi_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, figi_); } if (direction_ != ru.tinkoff.piapi.contract.v1.TradeDirection.TRADE_DIRECTION_UNSPECIFIED.getNumber()) { output.writeEnum(2, direction_); } if (price_ != null) { output.writeMessage(3, getPrice()); } if (quantity_ != 0L) { output.writeInt64(4, quantity_); } if (time_ != null) { output.writeMessage(5, getTime()); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(instrumentUid_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 6, instrumentUid_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(figi_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, figi_); } if (direction_ != ru.tinkoff.piapi.contract.v1.TradeDirection.TRADE_DIRECTION_UNSPECIFIED.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(2, direction_); } if (price_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(3, getPrice()); } if (quantity_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(4, quantity_); } if (time_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(5, getTime()); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(instrumentUid_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, instrumentUid_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof ru.tinkoff.piapi.contract.v1.Trade)) { return super.equals(obj); } ru.tinkoff.piapi.contract.v1.Trade other = (ru.tinkoff.piapi.contract.v1.Trade) obj; if (!getFigi() .equals(other.getFigi())) return false; if (direction_ != other.direction_) return false; if (hasPrice() != other.hasPrice()) return false; if (hasPrice()) { if (!getPrice() .equals(other.getPrice())) return false; } if (getQuantity() != other.getQuantity()) return false; if (hasTime() != other.hasTime()) return false; if (hasTime()) { if (!getTime() .equals(other.getTime())) return false; } if (!getInstrumentUid() .equals(other.getInstrumentUid())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + FIGI_FIELD_NUMBER; hash = (53 * hash) + getFigi().hashCode(); hash = (37 * hash) + DIRECTION_FIELD_NUMBER; hash = (53 * hash) + direction_; if (hasPrice()) { hash = (37 * hash) + PRICE_FIELD_NUMBER; hash = (53 * hash) + getPrice().hashCode(); } hash = (37 * hash) + QUANTITY_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getQuantity()); if (hasTime()) { hash = (37 * hash) + TIME_FIELD_NUMBER; hash = (53 * hash) + getTime().hashCode(); } hash = (37 * hash) + INSTRUMENT_UID_FIELD_NUMBER; hash = (53 * hash) + getInstrumentUid().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static ru.tinkoff.piapi.contract.v1.Trade parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static ru.tinkoff.piapi.contract.v1.Trade parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static ru.tinkoff.piapi.contract.v1.Trade parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static ru.tinkoff.piapi.contract.v1.Trade parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static ru.tinkoff.piapi.contract.v1.Trade parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static ru.tinkoff.piapi.contract.v1.Trade parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static ru.tinkoff.piapi.contract.v1.Trade parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static ru.tinkoff.piapi.contract.v1.Trade parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static ru.tinkoff.piapi.contract.v1.Trade parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static ru.tinkoff.piapi.contract.v1.Trade parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static ru.tinkoff.piapi.contract.v1.Trade parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static ru.tinkoff.piapi.contract.v1.Trade parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(ru.tinkoff.piapi.contract.v1.Trade prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   *Информация о сделке.
   * 
* * Protobuf type {@code tinkoff.public.invest.api.contract.v1.Trade} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:tinkoff.public.invest.api.contract.v1.Trade) ru.tinkoff.piapi.contract.v1.TradeOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return ru.tinkoff.piapi.contract.v1.Marketdata.internal_static_tinkoff_public_invest_api_contract_v1_Trade_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return ru.tinkoff.piapi.contract.v1.Marketdata.internal_static_tinkoff_public_invest_api_contract_v1_Trade_fieldAccessorTable .ensureFieldAccessorsInitialized( ru.tinkoff.piapi.contract.v1.Trade.class, ru.tinkoff.piapi.contract.v1.Trade.Builder.class); } // Construct using ru.tinkoff.piapi.contract.v1.Trade.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; figi_ = ""; direction_ = 0; price_ = null; if (priceBuilder_ != null) { priceBuilder_.dispose(); priceBuilder_ = null; } quantity_ = 0L; time_ = null; if (timeBuilder_ != null) { timeBuilder_.dispose(); timeBuilder_ = null; } instrumentUid_ = ""; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return ru.tinkoff.piapi.contract.v1.Marketdata.internal_static_tinkoff_public_invest_api_contract_v1_Trade_descriptor; } @java.lang.Override public ru.tinkoff.piapi.contract.v1.Trade getDefaultInstanceForType() { return ru.tinkoff.piapi.contract.v1.Trade.getDefaultInstance(); } @java.lang.Override public ru.tinkoff.piapi.contract.v1.Trade build() { ru.tinkoff.piapi.contract.v1.Trade result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public ru.tinkoff.piapi.contract.v1.Trade buildPartial() { ru.tinkoff.piapi.contract.v1.Trade result = new ru.tinkoff.piapi.contract.v1.Trade(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(ru.tinkoff.piapi.contract.v1.Trade result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.figi_ = figi_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.direction_ = direction_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.price_ = priceBuilder_ == null ? price_ : priceBuilder_.build(); } if (((from_bitField0_ & 0x00000008) != 0)) { result.quantity_ = quantity_; } if (((from_bitField0_ & 0x00000010) != 0)) { result.time_ = timeBuilder_ == null ? time_ : timeBuilder_.build(); } if (((from_bitField0_ & 0x00000020) != 0)) { result.instrumentUid_ = instrumentUid_; } } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof ru.tinkoff.piapi.contract.v1.Trade) { return mergeFrom((ru.tinkoff.piapi.contract.v1.Trade)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(ru.tinkoff.piapi.contract.v1.Trade other) { if (other == ru.tinkoff.piapi.contract.v1.Trade.getDefaultInstance()) return this; if (!other.getFigi().isEmpty()) { figi_ = other.figi_; bitField0_ |= 0x00000001; onChanged(); } if (other.direction_ != 0) { setDirectionValue(other.getDirectionValue()); } if (other.hasPrice()) { mergePrice(other.getPrice()); } if (other.getQuantity() != 0L) { setQuantity(other.getQuantity()); } if (other.hasTime()) { mergeTime(other.getTime()); } if (!other.getInstrumentUid().isEmpty()) { instrumentUid_ = other.instrumentUid_; bitField0_ |= 0x00000020; onChanged(); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { figi_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 16: { direction_ = input.readEnum(); bitField0_ |= 0x00000002; break; } // case 16 case 26: { input.readMessage( getPriceFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000004; break; } // case 26 case 32: { quantity_ = input.readInt64(); bitField0_ |= 0x00000008; break; } // case 32 case 42: { input.readMessage( getTimeFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000010; break; } // case 42 case 50: { instrumentUid_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000020; break; } // case 50 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int bitField0_; private java.lang.Object figi_ = ""; /** *
     *Figi-идентификатор инструмента.
     * 
* * string figi = 1; * @return The figi. */ public java.lang.String getFigi() { java.lang.Object ref = figi_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); figi_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     *Figi-идентификатор инструмента.
     * 
* * string figi = 1; * @return The bytes for figi. */ public com.google.protobuf.ByteString getFigiBytes() { java.lang.Object ref = figi_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); figi_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     *Figi-идентификатор инструмента.
     * 
* * string figi = 1; * @param value The figi to set. * @return This builder for chaining. */ public Builder setFigi( java.lang.String value) { if (value == null) { throw new NullPointerException(); } figi_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     *Figi-идентификатор инструмента.
     * 
* * string figi = 1; * @return This builder for chaining. */ public Builder clearFigi() { figi_ = getDefaultInstance().getFigi(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
     *Figi-идентификатор инструмента.
     * 
* * string figi = 1; * @param value The bytes for figi to set. * @return This builder for chaining. */ public Builder setFigiBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); figi_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private int direction_ = 0; /** *
     *Направление сделки.
     * 
* * .tinkoff.public.invest.api.contract.v1.TradeDirection direction = 2; * @return The enum numeric value on the wire for direction. */ @java.lang.Override public int getDirectionValue() { return direction_; } /** *
     *Направление сделки.
     * 
* * .tinkoff.public.invest.api.contract.v1.TradeDirection direction = 2; * @param value The enum numeric value on the wire for direction to set. * @return This builder for chaining. */ public Builder setDirectionValue(int value) { direction_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     *Направление сделки.
     * 
* * .tinkoff.public.invest.api.contract.v1.TradeDirection direction = 2; * @return The direction. */ @java.lang.Override public ru.tinkoff.piapi.contract.v1.TradeDirection getDirection() { ru.tinkoff.piapi.contract.v1.TradeDirection result = ru.tinkoff.piapi.contract.v1.TradeDirection.forNumber(direction_); return result == null ? ru.tinkoff.piapi.contract.v1.TradeDirection.UNRECOGNIZED : result; } /** *
     *Направление сделки.
     * 
* * .tinkoff.public.invest.api.contract.v1.TradeDirection direction = 2; * @param value The direction to set. * @return This builder for chaining. */ public Builder setDirection(ru.tinkoff.piapi.contract.v1.TradeDirection value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000002; direction_ = value.getNumber(); onChanged(); return this; } /** *
     *Направление сделки.
     * 
* * .tinkoff.public.invest.api.contract.v1.TradeDirection direction = 2; * @return This builder for chaining. */ public Builder clearDirection() { bitField0_ = (bitField0_ & ~0x00000002); direction_ = 0; onChanged(); return this; } private ru.tinkoff.piapi.contract.v1.Quotation price_; private com.google.protobuf.SingleFieldBuilderV3< ru.tinkoff.piapi.contract.v1.Quotation, ru.tinkoff.piapi.contract.v1.Quotation.Builder, ru.tinkoff.piapi.contract.v1.QuotationOrBuilder> priceBuilder_; /** *
     *Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента. Для перевод цен в валюту рекомендуем использовать [информацию со страницы](https://russianinvestments.github.io/investAPI/faq_marketdata/)
     * 
* * .tinkoff.public.invest.api.contract.v1.Quotation price = 3; * @return Whether the price field is set. */ public boolean hasPrice() { return ((bitField0_ & 0x00000004) != 0); } /** *
     *Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента. Для перевод цен в валюту рекомендуем использовать [информацию со страницы](https://russianinvestments.github.io/investAPI/faq_marketdata/)
     * 
* * .tinkoff.public.invest.api.contract.v1.Quotation price = 3; * @return The price. */ public ru.tinkoff.piapi.contract.v1.Quotation getPrice() { if (priceBuilder_ == null) { return price_ == null ? ru.tinkoff.piapi.contract.v1.Quotation.getDefaultInstance() : price_; } else { return priceBuilder_.getMessage(); } } /** *
     *Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента. Для перевод цен в валюту рекомендуем использовать [информацию со страницы](https://russianinvestments.github.io/investAPI/faq_marketdata/)
     * 
* * .tinkoff.public.invest.api.contract.v1.Quotation price = 3; */ public Builder setPrice(ru.tinkoff.piapi.contract.v1.Quotation value) { if (priceBuilder_ == null) { if (value == null) { throw new NullPointerException(); } price_ = value; } else { priceBuilder_.setMessage(value); } bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     *Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента. Для перевод цен в валюту рекомендуем использовать [информацию со страницы](https://russianinvestments.github.io/investAPI/faq_marketdata/)
     * 
* * .tinkoff.public.invest.api.contract.v1.Quotation price = 3; */ public Builder setPrice( ru.tinkoff.piapi.contract.v1.Quotation.Builder builderForValue) { if (priceBuilder_ == null) { price_ = builderForValue.build(); } else { priceBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     *Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента. Для перевод цен в валюту рекомендуем использовать [информацию со страницы](https://russianinvestments.github.io/investAPI/faq_marketdata/)
     * 
* * .tinkoff.public.invest.api.contract.v1.Quotation price = 3; */ public Builder mergePrice(ru.tinkoff.piapi.contract.v1.Quotation value) { if (priceBuilder_ == null) { if (((bitField0_ & 0x00000004) != 0) && price_ != null && price_ != ru.tinkoff.piapi.contract.v1.Quotation.getDefaultInstance()) { getPriceBuilder().mergeFrom(value); } else { price_ = value; } } else { priceBuilder_.mergeFrom(value); } bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     *Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента. Для перевод цен в валюту рекомендуем использовать [информацию со страницы](https://russianinvestments.github.io/investAPI/faq_marketdata/)
     * 
* * .tinkoff.public.invest.api.contract.v1.Quotation price = 3; */ public Builder clearPrice() { bitField0_ = (bitField0_ & ~0x00000004); price_ = null; if (priceBuilder_ != null) { priceBuilder_.dispose(); priceBuilder_ = null; } onChanged(); return this; } /** *
     *Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента. Для перевод цен в валюту рекомендуем использовать [информацию со страницы](https://russianinvestments.github.io/investAPI/faq_marketdata/)
     * 
* * .tinkoff.public.invest.api.contract.v1.Quotation price = 3; */ public ru.tinkoff.piapi.contract.v1.Quotation.Builder getPriceBuilder() { bitField0_ |= 0x00000004; onChanged(); return getPriceFieldBuilder().getBuilder(); } /** *
     *Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента. Для перевод цен в валюту рекомендуем использовать [информацию со страницы](https://russianinvestments.github.io/investAPI/faq_marketdata/)
     * 
* * .tinkoff.public.invest.api.contract.v1.Quotation price = 3; */ public ru.tinkoff.piapi.contract.v1.QuotationOrBuilder getPriceOrBuilder() { if (priceBuilder_ != null) { return priceBuilder_.getMessageOrBuilder(); } else { return price_ == null ? ru.tinkoff.piapi.contract.v1.Quotation.getDefaultInstance() : price_; } } /** *
     *Цена за 1 инструмент. Для получения стоимости лота требуется умножить на лотность инструмента. Для перевод цен в валюту рекомендуем использовать [информацию со страницы](https://russianinvestments.github.io/investAPI/faq_marketdata/)
     * 
* * .tinkoff.public.invest.api.contract.v1.Quotation price = 3; */ private com.google.protobuf.SingleFieldBuilderV3< ru.tinkoff.piapi.contract.v1.Quotation, ru.tinkoff.piapi.contract.v1.Quotation.Builder, ru.tinkoff.piapi.contract.v1.QuotationOrBuilder> getPriceFieldBuilder() { if (priceBuilder_ == null) { priceBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< ru.tinkoff.piapi.contract.v1.Quotation, ru.tinkoff.piapi.contract.v1.Quotation.Builder, ru.tinkoff.piapi.contract.v1.QuotationOrBuilder>( getPrice(), getParentForChildren(), isClean()); price_ = null; } return priceBuilder_; } private long quantity_ ; /** *
     *Количество лотов.
     * 
* * int64 quantity = 4; * @return The quantity. */ @java.lang.Override public long getQuantity() { return quantity_; } /** *
     *Количество лотов.
     * 
* * int64 quantity = 4; * @param value The quantity to set. * @return This builder for chaining. */ public Builder setQuantity(long value) { quantity_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     *Количество лотов.
     * 
* * int64 quantity = 4; * @return This builder for chaining. */ public Builder clearQuantity() { bitField0_ = (bitField0_ & ~0x00000008); quantity_ = 0L; onChanged(); return this; } private com.google.protobuf.Timestamp time_; private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> timeBuilder_; /** *
     *Время сделки в часовом поясе UTC по времени биржи.
     * 
* * .google.protobuf.Timestamp time = 5; * @return Whether the time field is set. */ public boolean hasTime() { return ((bitField0_ & 0x00000010) != 0); } /** *
     *Время сделки в часовом поясе UTC по времени биржи.
     * 
* * .google.protobuf.Timestamp time = 5; * @return The time. */ public com.google.protobuf.Timestamp getTime() { if (timeBuilder_ == null) { return time_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : time_; } else { return timeBuilder_.getMessage(); } } /** *
     *Время сделки в часовом поясе UTC по времени биржи.
     * 
* * .google.protobuf.Timestamp time = 5; */ public Builder setTime(com.google.protobuf.Timestamp value) { if (timeBuilder_ == null) { if (value == null) { throw new NullPointerException(); } time_ = value; } else { timeBuilder_.setMessage(value); } bitField0_ |= 0x00000010; onChanged(); return this; } /** *
     *Время сделки в часовом поясе UTC по времени биржи.
     * 
* * .google.protobuf.Timestamp time = 5; */ public Builder setTime( com.google.protobuf.Timestamp.Builder builderForValue) { if (timeBuilder_ == null) { time_ = builderForValue.build(); } else { timeBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000010; onChanged(); return this; } /** *
     *Время сделки в часовом поясе UTC по времени биржи.
     * 
* * .google.protobuf.Timestamp time = 5; */ public Builder mergeTime(com.google.protobuf.Timestamp value) { if (timeBuilder_ == null) { if (((bitField0_ & 0x00000010) != 0) && time_ != null && time_ != com.google.protobuf.Timestamp.getDefaultInstance()) { getTimeBuilder().mergeFrom(value); } else { time_ = value; } } else { timeBuilder_.mergeFrom(value); } bitField0_ |= 0x00000010; onChanged(); return this; } /** *
     *Время сделки в часовом поясе UTC по времени биржи.
     * 
* * .google.protobuf.Timestamp time = 5; */ public Builder clearTime() { bitField0_ = (bitField0_ & ~0x00000010); time_ = null; if (timeBuilder_ != null) { timeBuilder_.dispose(); timeBuilder_ = null; } onChanged(); return this; } /** *
     *Время сделки в часовом поясе UTC по времени биржи.
     * 
* * .google.protobuf.Timestamp time = 5; */ public com.google.protobuf.Timestamp.Builder getTimeBuilder() { bitField0_ |= 0x00000010; onChanged(); return getTimeFieldBuilder().getBuilder(); } /** *
     *Время сделки в часовом поясе UTC по времени биржи.
     * 
* * .google.protobuf.Timestamp time = 5; */ public com.google.protobuf.TimestampOrBuilder getTimeOrBuilder() { if (timeBuilder_ != null) { return timeBuilder_.getMessageOrBuilder(); } else { return time_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : time_; } } /** *
     *Время сделки в часовом поясе UTC по времени биржи.
     * 
* * .google.protobuf.Timestamp time = 5; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> getTimeFieldBuilder() { if (timeBuilder_ == null) { timeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( getTime(), getParentForChildren(), isClean()); time_ = null; } return timeBuilder_; } private java.lang.Object instrumentUid_ = ""; /** *
     *Uid инструмента
     * 
* * string instrument_uid = 6; * @return The instrumentUid. */ public java.lang.String getInstrumentUid() { java.lang.Object ref = instrumentUid_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); instrumentUid_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     *Uid инструмента
     * 
* * string instrument_uid = 6; * @return The bytes for instrumentUid. */ public com.google.protobuf.ByteString getInstrumentUidBytes() { java.lang.Object ref = instrumentUid_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); instrumentUid_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     *Uid инструмента
     * 
* * string instrument_uid = 6; * @param value The instrumentUid to set. * @return This builder for chaining. */ public Builder setInstrumentUid( java.lang.String value) { if (value == null) { throw new NullPointerException(); } instrumentUid_ = value; bitField0_ |= 0x00000020; onChanged(); return this; } /** *
     *Uid инструмента
     * 
* * string instrument_uid = 6; * @return This builder for chaining. */ public Builder clearInstrumentUid() { instrumentUid_ = getDefaultInstance().getInstrumentUid(); bitField0_ = (bitField0_ & ~0x00000020); onChanged(); return this; } /** *
     *Uid инструмента
     * 
* * string instrument_uid = 6; * @param value The bytes for instrumentUid to set. * @return This builder for chaining. */ public Builder setInstrumentUidBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); instrumentUid_ = value; bitField0_ |= 0x00000020; onChanged(); return this; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:tinkoff.public.invest.api.contract.v1.Trade) } // @@protoc_insertion_point(class_scope:tinkoff.public.invest.api.contract.v1.Trade) private static final ru.tinkoff.piapi.contract.v1.Trade DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new ru.tinkoff.piapi.contract.v1.Trade(); } public static ru.tinkoff.piapi.contract.v1.Trade getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public Trade parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public ru.tinkoff.piapi.contract.v1.Trade getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy