@fintekkers/ledger-models 0.1.119 → 0.1.128
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.npmrc.example +4 -0
- package/catalog/fields.json +275 -0
- package/catalog/measures.json +259 -0
- package/node/fintekkers/models/portfolio/portfolio_pb.js +13 -19
- package/node/fintekkers/models/position/field_pb.js +1 -7
- package/node/fintekkers/models/position/measure_pb.d.ts +18 -0
- package/node/fintekkers/models/position/measure_pb.js +20 -8
- package/node/fintekkers/models/position/position_filter_pb.js +7 -13
- package/node/fintekkers/models/position/position_pb.d.ts +7 -0
- package/node/fintekkers/models/position/position_pb.js +64 -17
- package/node/fintekkers/models/position/position_status_pb.js +1 -7
- package/node/fintekkers/models/position/position_util_pb.js +11 -17
- package/node/fintekkers/models/price/price_pb.d.ts +4 -0
- package/node/fintekkers/models/price/price_pb.js +45 -19
- package/node/fintekkers/models/price/price_type_grpc_pb.js +1 -0
- package/node/fintekkers/models/price/price_type_pb.d.ts +15 -0
- package/node/fintekkers/models/price/price_type_pb.js +30 -0
- package/node/fintekkers/models/security/bond/auction_type_pb.js +1 -7
- package/node/fintekkers/models/security/bond/issuance_pb.js +17 -23
- package/node/fintekkers/models/security/coupon_frequency_pb.js +1 -7
- package/node/fintekkers/models/security/coupon_type_pb.js +1 -7
- package/node/fintekkers/models/security/identifier/identifier_pb.js +9 -15
- package/node/fintekkers/models/security/identifier/identifier_type_pb.d.ts +1 -0
- package/node/fintekkers/models/security/identifier/identifier_type_pb.js +2 -7
- package/node/fintekkers/models/security/index/index_type_grpc_pb.js +1 -0
- package/node/fintekkers/models/security/index/index_type_pb.d.ts +22 -0
- package/node/fintekkers/models/security/index/index_type_pb.js +37 -0
- package/node/fintekkers/models/security/index_composition_pb.d.ts +126 -0
- package/node/fintekkers/models/security/index_composition_pb.js +992 -0
- package/node/fintekkers/models/security/security_pb.d.ts +382 -0
- package/node/fintekkers/models/security/security_pb.js +3183 -57
- package/node/fintekkers/models/security/security_quantity_type_pb.js +1 -7
- package/node/fintekkers/models/security/security_type_pb.d.ts +3 -0
- package/node/fintekkers/models/security/security_type_pb.js +5 -8
- package/node/fintekkers/models/security/tenor_pb.js +9 -15
- package/node/fintekkers/models/security/tenor_type_pb.js +1 -7
- package/node/fintekkers/models/strategy/strategy_allocation_pb.js +13 -19
- package/node/fintekkers/models/strategy/strategy_pb.js +14 -20
- package/node/fintekkers/models/transaction/transaction_pb.js +24 -30
- package/node/fintekkers/models/transaction/transaction_type_pb.js +1 -7
- package/node/fintekkers/models/util/api/api_key_pb.js +10 -16
- package/node/fintekkers/models/util/currency_pb.d.ts +27 -0
- package/node/fintekkers/models/util/currency_pb.js +170 -0
- package/node/fintekkers/models/util/date_range_pb.js +8 -14
- package/node/fintekkers/models/util/decimal_value_pb.js +4 -10
- package/node/fintekkers/models/util/endpoint_pb.js +7 -13
- package/node/fintekkers/models/util/local_date_pb.js +5 -11
- package/node/fintekkers/models/util/local_timestamp_pb.js +5 -11
- package/node/fintekkers/models/util/lock/node_partition_pb.js +9 -15
- package/node/fintekkers/models/util/lock/node_state_pb.js +10 -16
- package/node/fintekkers/models/util/uuid_pb.js +3 -9
- package/node/fintekkers/models/valuation/cashflow_pb.d.ts +57 -0
- package/node/fintekkers/models/valuation/cashflow_pb.js +401 -0
- package/node/fintekkers/requests/index_composition/create_index_composition_request_pb.d.ts +79 -0
- package/node/fintekkers/requests/index_composition/create_index_composition_request_pb.js +599 -0
- package/node/fintekkers/requests/index_composition/get_index_composition_request_pb.d.ts +84 -0
- package/node/fintekkers/requests/index_composition/get_index_composition_request_pb.js +624 -0
- package/node/fintekkers/requests/portfolio/create_portfolio_request_pb.js +7 -13
- package/node/fintekkers/requests/portfolio/create_portfolio_response_pb.js +8 -14
- package/node/fintekkers/requests/portfolio/query_portfolio_request_pb.d.ts +3 -0
- package/node/fintekkers/requests/portfolio/query_portfolio_request_pb.js +39 -15
- package/node/fintekkers/requests/portfolio/query_portfolio_response_pb.js +8 -14
- package/node/fintekkers/requests/position/query_position_request_pb.js +15 -27
- package/node/fintekkers/requests/position/query_position_response_pb.js +10 -16
- package/node/fintekkers/requests/price/create_price_request_pb.js +7 -13
- package/node/fintekkers/requests/price/create_price_response_pb.js +8 -14
- package/node/fintekkers/requests/price/query_price_request_pb.js +12 -18
- package/node/fintekkers/requests/price/query_price_response_pb.js +8 -14
- package/node/fintekkers/requests/security/create_security_request_pb.js +7 -13
- package/node/fintekkers/requests/security/create_security_response_pb.js +9 -15
- package/node/fintekkers/requests/security/get_field_values_request_pb.js +7 -13
- package/node/fintekkers/requests/security/get_field_values_response_pb.js +7 -13
- package/node/fintekkers/requests/security/get_fields_response_pb.js +8 -17
- package/node/fintekkers/requests/security/query_security_request_pb.d.ts +3 -0
- package/node/fintekkers/requests/security/query_security_request_pb.js +39 -15
- package/node/fintekkers/requests/security/query_security_response_pb.js +9 -15
- package/node/fintekkers/requests/transaction/create_transaction_request_pb.js +7 -13
- package/node/fintekkers/requests/transaction/create_transaction_response_pb.js +8 -14
- package/node/fintekkers/requests/transaction/query_transaction_request_pb.js +10 -16
- package/node/fintekkers/requests/transaction/query_transaction_response_pb.js +9 -15
- package/node/fintekkers/requests/util/delete_request_pb.d.ts +135 -0
- package/node/fintekkers/requests/util/delete_request_pb.js +1051 -0
- package/node/fintekkers/requests/util/errors/error_pb.js +7 -13
- package/node/fintekkers/requests/util/errors/message_pb.js +6 -12
- package/node/fintekkers/requests/util/errors/summary_pb.js +4 -10
- package/node/fintekkers/requests/util/lock/lock_request_pb.js +8 -14
- package/node/fintekkers/requests/util/lock/lock_response_pb.js +9 -15
- package/node/fintekkers/requests/util/operation_pb.js +1 -7
- package/node/fintekkers/requests/valuation/curve_request_pb.d.ts +85 -0
- package/node/fintekkers/requests/valuation/curve_request_pb.js +646 -0
- package/node/fintekkers/requests/valuation/curve_response_pb.d.ts +105 -0
- package/node/fintekkers/requests/valuation/curve_response_pb.js +806 -0
- package/node/fintekkers/requests/valuation/product_inputs.test.ts +172 -0
- package/node/fintekkers/requests/valuation/product_inputs_pb.d.ts +137 -0
- package/node/fintekkers/requests/valuation/product_inputs_pb.js +987 -0
- package/node/fintekkers/requests/valuation/valuation_request_pb.d.ts +19 -0
- package/node/fintekkers/requests/valuation/valuation_request_pb.js +168 -22
- package/node/fintekkers/requests/valuation/valuation_response_pb.d.ts +13 -0
- package/node/fintekkers/requests/valuation/valuation_response_pb.js +118 -16
- package/node/fintekkers/services/index-composition-service/index_composition_service_grpc_pb.d.ts +60 -0
- package/node/fintekkers/services/index-composition-service/index_composition_service_grpc_pb.js +87 -0
- package/node/fintekkers/services/index-composition-service/index_composition_service_pb.d.ts +9 -0
- package/node/fintekkers/services/index-composition-service/index_composition_service_pb.js +21 -0
- package/node/fintekkers/services/lock-service/lock_service_grpc_pb.js +22 -22
- package/node/fintekkers/services/lock-service/lock_service_pb.js +15 -21
- package/node/fintekkers/services/portfolio-service/portfolio_service_grpc_pb.d.ts +18 -0
- package/node/fintekkers/services/portfolio-service/portfolio_service_grpc_pb.js +39 -5
- package/node/fintekkers/services/portfolio-service/portfolio_service_pb.d.ts +1 -0
- package/node/fintekkers/services/portfolio-service/portfolio_service_pb.js +3 -7
- package/node/fintekkers/services/position-service/position_service_grpc_pb.d.ts +37 -0
- package/node/fintekkers/services/position-service/position_service_grpc_pb.js +64 -6
- package/node/fintekkers/services/position-service/position_service_pb.d.ts +3 -0
- package/node/fintekkers/services/position-service/position_service_pb.js +7 -7
- package/node/fintekkers/services/price-service/price_service_grpc_pb.js +5 -5
- package/node/fintekkers/services/price-service/price_service_pb.js +1 -7
- package/node/fintekkers/services/security-service/security_service_grpc_pb.d.ts +18 -0
- package/node/fintekkers/services/security-service/security_service_grpc_pb.js +43 -9
- package/node/fintekkers/services/security-service/security_service_pb.d.ts +1 -0
- package/node/fintekkers/services/security-service/security_service_pb.js +3 -7
- package/node/fintekkers/services/transaction-service/transaction_service_grpc_pb.d.ts +55 -0
- package/node/fintekkers/services/transaction-service/transaction_service_grpc_pb.js +97 -5
- package/node/fintekkers/services/transaction-service/transaction_service_pb.d.ts +4 -0
- package/node/fintekkers/services/transaction-service/transaction_service_pb.js +9 -7
- package/node/fintekkers/services/valuation-service/valuation_service_grpc_pb.d.ts +19 -0
- package/node/fintekkers/services/valuation-service/valuation_service_grpc_pb.js +37 -2
- package/node/fintekkers/services/valuation-service/valuation_service_pb.d.ts +2 -0
- package/node/fintekkers/services/valuation-service/valuation_service_pb.js +5 -7
- package/node/wrappers/models/portfolio/portfolio.js.map +1 -1
- package/node/wrappers/models/portfolio/portfolio.test.d.ts +2 -0
- package/node/wrappers/models/portfolio/portfolio.test.js +29 -0
- package/node/wrappers/models/portfolio/portfolio.test.js.map +1 -0
- package/node/wrappers/models/portfolio/portfolio.test.ts +28 -0
- package/node/wrappers/models/position/position.js +25 -13
- package/node/wrappers/models/position/position.js.map +1 -1
- package/node/wrappers/models/position/position.test.js +20 -0
- package/node/wrappers/models/position/position.test.js.map +1 -1
- package/node/wrappers/models/position/position.test.ts +23 -0
- package/node/wrappers/models/position/position.ts +27 -13
- package/node/wrappers/models/position/positionfilter.js +1 -1
- package/node/wrappers/models/position/positionfilter.js.map +1 -1
- package/node/wrappers/models/position/positionfilter.test.js.map +1 -1
- package/node/wrappers/models/price/Price.cash.test.d.ts +1 -0
- package/node/wrappers/models/price/Price.cash.test.js +42 -0
- package/node/wrappers/models/price/Price.cash.test.js.map +1 -0
- package/node/wrappers/models/price/Price.cash.test.ts +43 -0
- package/node/wrappers/models/price/Price.d.ts +38 -0
- package/node/wrappers/models/price/Price.js +111 -0
- package/node/wrappers/models/price/Price.js.map +1 -0
- package/node/wrappers/models/price/Price.test.d.ts +1 -0
- package/node/wrappers/models/price/Price.test.js +55 -0
- package/node/wrappers/models/price/Price.test.js.map +1 -0
- package/node/wrappers/models/price/Price.test.ts +63 -0
- package/node/wrappers/models/price/Price.ts +123 -0
- package/node/wrappers/models/security/BondSecurity.d.ts +17 -2
- package/node/wrappers/models/security/BondSecurity.js +59 -11
- package/node/wrappers/models/security/BondSecurity.js.map +1 -1
- package/node/wrappers/models/security/BondSecurity.priceScale.test.d.ts +1 -0
- package/node/wrappers/models/security/BondSecurity.priceScale.test.js +36 -0
- package/node/wrappers/models/security/BondSecurity.priceScale.test.js.map +1 -0
- package/node/wrappers/models/security/BondSecurity.priceScale.test.ts +36 -0
- package/node/wrappers/models/security/BondSecurity.test.js +34 -1
- package/node/wrappers/models/security/BondSecurity.test.js.map +1 -1
- package/node/wrappers/models/security/BondSecurity.test.ts +42 -1
- package/node/wrappers/models/security/BondSecurity.ts +63 -11
- package/node/wrappers/models/security/security-roundtrip.test.d.ts +1 -0
- package/node/wrappers/models/security/security-roundtrip.test.js +173 -0
- package/node/wrappers/models/security/security-roundtrip.test.js.map +1 -0
- package/node/wrappers/models/security/security-roundtrip.test.ts +192 -0
- package/node/wrappers/models/security/security.d.ts +8 -0
- package/node/wrappers/models/security/security.js +24 -2
- package/node/wrappers/models/security/security.js.map +1 -1
- package/node/wrappers/models/security/security.ts +26 -2
- package/node/wrappers/models/security/term.js +31 -6
- package/node/wrappers/models/security/term.js.map +1 -1
- package/node/wrappers/models/security/term.test.js +21 -2
- package/node/wrappers/models/security/term.test.js.map +1 -1
- package/node/wrappers/models/security/term.test.ts +28 -2
- package/node/wrappers/models/security/term.ts +34 -6
- package/node/wrappers/models/transaction/transaction.d.ts +59 -1
- package/node/wrappers/models/transaction/transaction.derived.test.d.ts +1 -0
- package/node/wrappers/models/transaction/transaction.derived.test.js +199 -0
- package/node/wrappers/models/transaction/transaction.derived.test.js.map +1 -0
- package/node/wrappers/models/transaction/transaction.derived.test.ts +251 -0
- package/node/wrappers/models/transaction/transaction.js +350 -2
- package/node/wrappers/models/transaction/transaction.js.map +1 -1
- package/node/wrappers/models/transaction/transaction.ts +416 -2
- package/node/wrappers/models/transaction/transaction_constructor.test.d.ts +1 -0
- package/node/wrappers/models/transaction/transaction_constructor.test.js +100 -0
- package/node/wrappers/models/transaction/transaction_constructor.test.js.map +1 -0
- package/node/wrappers/models/transaction/transaction_constructor.test.ts +111 -0
- package/node/wrappers/models/transaction/transaction_type.js.map +1 -1
- package/node/wrappers/models/utils/datetime.d.ts +6 -0
- package/node/wrappers/models/utils/datetime.js +14 -6
- package/node/wrappers/models/utils/datetime.js.map +1 -1
- package/node/wrappers/models/utils/datetime.ts +15 -6
- package/node/wrappers/models/utils/protoEnum.js.map +1 -1
- package/node/wrappers/models/utils/requestcontext.d.ts +17 -3
- package/node/wrappers/models/utils/requestcontext.js +39 -7
- package/node/wrappers/models/utils/requestcontext.js.map +1 -1
- package/node/wrappers/models/utils/requestcontext.test.d.ts +1 -0
- package/node/wrappers/models/utils/requestcontext.test.js +108 -0
- package/node/wrappers/models/utils/requestcontext.test.js.map +1 -0
- package/node/wrappers/models/utils/requestcontext.test.ts +85 -0
- package/node/wrappers/models/utils/requestcontext.ts +49 -9
- package/node/wrappers/models/utils/serialization.d.ts +2 -1
- package/node/wrappers/models/utils/serialization.js +4 -0
- package/node/wrappers/models/utils/serialization.js.map +1 -1
- package/node/wrappers/models/utils/serialization.test.js +15 -0
- package/node/wrappers/models/utils/serialization.test.js.map +1 -1
- package/node/wrappers/models/utils/serialization.test.ts +19 -1
- package/node/wrappers/models/utils/serialization.ts +5 -4
- package/node/wrappers/models/utils/serialization.util.js.map +1 -1
- package/node/wrappers/models/utils/uuid.js +9 -1
- package/node/wrappers/models/utils/uuid.js.map +1 -1
- package/node/wrappers/models/utils/uuid.test.js +22 -4
- package/node/wrappers/models/utils/uuid.test.js.map +1 -1
- package/node/wrappers/models/utils/uuid.test.ts +26 -5
- package/node/wrappers/models/utils/uuid.ts +7 -1
- package/node/wrappers/services/apikey.test.d.ts +7 -0
- package/node/wrappers/services/apikey.test.js +56 -0
- package/node/wrappers/services/apikey.test.js.map +1 -0
- package/node/wrappers/services/apikey.test.ts +65 -0
- package/node/wrappers/services/portfolio-service/PortfolioService.d.ts +1 -1
- package/node/wrappers/services/portfolio-service/PortfolioService.js +8 -2
- package/node/wrappers/services/portfolio-service/PortfolioService.js.map +1 -1
- package/node/wrappers/services/portfolio-service/PortfolioService.ts +7 -2
- package/node/wrappers/services/position-service/PositionService.d.ts +1 -1
- package/node/wrappers/services/position-service/PositionService.js +8 -2
- package/node/wrappers/services/position-service/PositionService.js.map +1 -1
- package/node/wrappers/services/position-service/PositionService.ts +7 -2
- package/node/wrappers/services/position-service/position.test.js.map +1 -1
- package/node/wrappers/services/price-service/PriceService.d.ts +29 -0
- package/node/wrappers/services/price-service/PriceService.js +151 -0
- package/node/wrappers/services/price-service/PriceService.js.map +1 -0
- package/node/wrappers/services/price-service/PriceService.ts +127 -0
- package/node/wrappers/services/price-service/price-wrapper.test.d.ts +1 -0
- package/node/wrappers/services/price-service/price-wrapper.test.js +132 -0
- package/node/wrappers/services/price-service/price-wrapper.test.js.map +1 -0
- package/node/wrappers/services/price-service/price-wrapper.test.ts +120 -0
- package/node/wrappers/services/price-service/price.test.d.ts +1 -0
- package/node/wrappers/services/price-service/price.test.js +198 -0
- package/node/wrappers/services/price-service/price.test.js.map +1 -0
- package/node/wrappers/services/price-service/price.test.ts +205 -0
- package/node/wrappers/services/security-service/SecurityService.d.ts +1 -1
- package/node/wrappers/services/security-service/SecurityService.js +8 -2
- package/node/wrappers/services/security-service/SecurityService.js.map +1 -1
- package/node/wrappers/services/security-service/SecurityService.searchByUuid.test.d.ts +1 -0
- package/node/wrappers/services/security-service/SecurityService.searchByUuid.test.js +38 -0
- package/node/wrappers/services/security-service/SecurityService.searchByUuid.test.js.map +1 -0
- package/node/wrappers/services/security-service/SecurityService.searchByUuid.test.ts +32 -0
- package/node/wrappers/services/security-service/SecurityService.ts +7 -2
- package/node/wrappers/services/security-service/security.maturityLadder.test.js.map +1 -1
- package/node/wrappers/services/transaction-service/TransactionService.d.ts +1 -1
- package/node/wrappers/services/transaction-service/TransactionService.js +8 -2
- package/node/wrappers/services/transaction-service/TransactionService.js.map +1 -1
- package/node/wrappers/services/transaction-service/TransactionService.ts +7 -2
- package/node/wrappers/services/transaction-service/transaction.search.test.js.map +1 -1
- package/node/wrappers/services/transaction-service/transaction.test.js.map +1 -1
- package/package.json +3 -2
- package/.env +0 -3
|
@@ -0,0 +1,992 @@
|
|
|
1
|
+
// source: fintekkers/models/security/index_composition.proto
|
|
2
|
+
/**
|
|
3
|
+
* @fileoverview
|
|
4
|
+
* @enhanceable
|
|
5
|
+
* @suppress {missingRequire} reports error on implicit type usages.
|
|
6
|
+
* @suppress {messageConventions} JS Compiler reports an error if a variable or
|
|
7
|
+
* field starts with 'MSG_' and isn't a translatable message.
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
// GENERATED CODE -- DO NOT EDIT!
|
|
11
|
+
/* eslint-disable */
|
|
12
|
+
// @ts-nocheck
|
|
13
|
+
|
|
14
|
+
var jspb = require('google-protobuf');
|
|
15
|
+
var goog = jspb;
|
|
16
|
+
var global = globalThis;
|
|
17
|
+
|
|
18
|
+
var fintekkers_models_util_decimal_value_pb = require('../../../fintekkers/models/util/decimal_value_pb.js');
|
|
19
|
+
goog.object.extend(proto, fintekkers_models_util_decimal_value_pb);
|
|
20
|
+
var fintekkers_models_util_local_date_pb = require('../../../fintekkers/models/util/local_date_pb.js');
|
|
21
|
+
goog.object.extend(proto, fintekkers_models_util_local_date_pb);
|
|
22
|
+
var fintekkers_models_util_local_timestamp_pb = require('../../../fintekkers/models/util/local_timestamp_pb.js');
|
|
23
|
+
goog.object.extend(proto, fintekkers_models_util_local_timestamp_pb);
|
|
24
|
+
var fintekkers_models_util_uuid_pb = require('../../../fintekkers/models/util/uuid_pb.js');
|
|
25
|
+
goog.object.extend(proto, fintekkers_models_util_uuid_pb);
|
|
26
|
+
var fintekkers_models_security_security_pb = require('../../../fintekkers/models/security/security_pb.js');
|
|
27
|
+
goog.object.extend(proto, fintekkers_models_security_security_pb);
|
|
28
|
+
goog.exportSymbol('proto.fintekkers.models.security.IndexCompositionProto', null, global);
|
|
29
|
+
goog.exportSymbol('proto.fintekkers.models.security.IndexConstituentProto', null, global);
|
|
30
|
+
/**
|
|
31
|
+
* Generated by JsPbCodeGenerator.
|
|
32
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
33
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
34
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
35
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
36
|
+
* valid.
|
|
37
|
+
* @extends {jspb.Message}
|
|
38
|
+
* @constructor
|
|
39
|
+
*/
|
|
40
|
+
proto.fintekkers.models.security.IndexCompositionProto = function(opt_data) {
|
|
41
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.fintekkers.models.security.IndexCompositionProto.repeatedFields_, null);
|
|
42
|
+
};
|
|
43
|
+
goog.inherits(proto.fintekkers.models.security.IndexCompositionProto, jspb.Message);
|
|
44
|
+
if (goog.DEBUG && !COMPILED) {
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
* @override
|
|
48
|
+
*/
|
|
49
|
+
proto.fintekkers.models.security.IndexCompositionProto.displayName = 'proto.fintekkers.models.security.IndexCompositionProto';
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Generated by JsPbCodeGenerator.
|
|
53
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
54
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
55
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
56
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
57
|
+
* valid.
|
|
58
|
+
* @extends {jspb.Message}
|
|
59
|
+
* @constructor
|
|
60
|
+
*/
|
|
61
|
+
proto.fintekkers.models.security.IndexConstituentProto = function(opt_data) {
|
|
62
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
63
|
+
};
|
|
64
|
+
goog.inherits(proto.fintekkers.models.security.IndexConstituentProto, jspb.Message);
|
|
65
|
+
if (goog.DEBUG && !COMPILED) {
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
* @override
|
|
69
|
+
*/
|
|
70
|
+
proto.fintekkers.models.security.IndexConstituentProto.displayName = 'proto.fintekkers.models.security.IndexConstituentProto';
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* List of repeated fields within this message type.
|
|
75
|
+
* @private {!Array<number>}
|
|
76
|
+
* @const
|
|
77
|
+
*/
|
|
78
|
+
proto.fintekkers.models.security.IndexCompositionProto.repeatedFields_ = [20];
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
83
|
+
/**
|
|
84
|
+
* Creates an object representation of this proto.
|
|
85
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
86
|
+
* Optional fields that are not set will be set to undefined.
|
|
87
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
88
|
+
* For the list of reserved names please see:
|
|
89
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
90
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
91
|
+
* JSPB instance for transitional soy proto support:
|
|
92
|
+
* http://goto/soy-param-migration
|
|
93
|
+
* @return {!Object}
|
|
94
|
+
*/
|
|
95
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.toObject = function(opt_includeInstance) {
|
|
96
|
+
return proto.fintekkers.models.security.IndexCompositionProto.toObject(opt_includeInstance, this);
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Static version of the {@see toObject} method.
|
|
102
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
103
|
+
* the JSPB instance for transitional soy proto support:
|
|
104
|
+
* http://goto/soy-param-migration
|
|
105
|
+
* @param {!proto.fintekkers.models.security.IndexCompositionProto} msg The msg instance to transform.
|
|
106
|
+
* @return {!Object}
|
|
107
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
108
|
+
*/
|
|
109
|
+
proto.fintekkers.models.security.IndexCompositionProto.toObject = function(includeInstance, msg) {
|
|
110
|
+
var f, obj = {
|
|
111
|
+
objectClass: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
112
|
+
version: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
113
|
+
uuid: (f = msg.getUuid()) && fintekkers_models_util_uuid_pb.UUIDProto.toObject(includeInstance, f),
|
|
114
|
+
asOf: (f = msg.getAsOf()) && fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.toObject(includeInstance, f),
|
|
115
|
+
isLink: jspb.Message.getBooleanFieldWithDefault(msg, 7, false),
|
|
116
|
+
validFrom: (f = msg.getValidFrom()) && fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.toObject(includeInstance, f),
|
|
117
|
+
validTo: (f = msg.getValidTo()) && fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.toObject(includeInstance, f),
|
|
118
|
+
indexSecurity: (f = msg.getIndexSecurity()) && fintekkers_models_security_security_pb.SecurityProto.toObject(includeInstance, f),
|
|
119
|
+
effectiveDate: (f = msg.getEffectiveDate()) && fintekkers_models_util_local_date_pb.LocalDateProto.toObject(includeInstance, f),
|
|
120
|
+
constituentsList: jspb.Message.toObjectList(msg.getConstituentsList(),
|
|
121
|
+
proto.fintekkers.models.security.IndexConstituentProto.toObject, includeInstance),
|
|
122
|
+
indexDivisor: (f = msg.getIndexDivisor()) && fintekkers_models_util_decimal_value_pb.DecimalValueProto.toObject(includeInstance, f),
|
|
123
|
+
notes: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
if (includeInstance) {
|
|
127
|
+
obj.$jspbMessageInstance = msg;
|
|
128
|
+
}
|
|
129
|
+
return obj;
|
|
130
|
+
};
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* Deserializes binary data (in protobuf wire format).
|
|
136
|
+
* @param {jspb.binary.bytesource.ByteSource} bytes The bytes to deserialize.
|
|
137
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto}
|
|
138
|
+
*/
|
|
139
|
+
proto.fintekkers.models.security.IndexCompositionProto.deserializeBinary = function(bytes) {
|
|
140
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
141
|
+
var msg = new proto.fintekkers.models.security.IndexCompositionProto;
|
|
142
|
+
return proto.fintekkers.models.security.IndexCompositionProto.deserializeBinaryFromReader(msg, reader);
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
148
|
+
* given reader into the given message object.
|
|
149
|
+
* @param {!proto.fintekkers.models.security.IndexCompositionProto} msg The message object to deserialize into.
|
|
150
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
151
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto}
|
|
152
|
+
*/
|
|
153
|
+
proto.fintekkers.models.security.IndexCompositionProto.deserializeBinaryFromReader = function(msg, reader) {
|
|
154
|
+
while (reader.nextField()) {
|
|
155
|
+
if (reader.isEndGroup()) {
|
|
156
|
+
break;
|
|
157
|
+
}
|
|
158
|
+
var field = reader.getFieldNumber();
|
|
159
|
+
switch (field) {
|
|
160
|
+
case 1:
|
|
161
|
+
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
162
|
+
msg.setObjectClass(value);
|
|
163
|
+
break;
|
|
164
|
+
case 2:
|
|
165
|
+
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
166
|
+
msg.setVersion(value);
|
|
167
|
+
break;
|
|
168
|
+
case 5:
|
|
169
|
+
var value = new fintekkers_models_util_uuid_pb.UUIDProto;
|
|
170
|
+
reader.readMessage(value,fintekkers_models_util_uuid_pb.UUIDProto.deserializeBinaryFromReader);
|
|
171
|
+
msg.setUuid(value);
|
|
172
|
+
break;
|
|
173
|
+
case 6:
|
|
174
|
+
var value = new fintekkers_models_util_local_timestamp_pb.LocalTimestampProto;
|
|
175
|
+
reader.readMessage(value,fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.deserializeBinaryFromReader);
|
|
176
|
+
msg.setAsOf(value);
|
|
177
|
+
break;
|
|
178
|
+
case 7:
|
|
179
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
180
|
+
msg.setIsLink(value);
|
|
181
|
+
break;
|
|
182
|
+
case 8:
|
|
183
|
+
var value = new fintekkers_models_util_local_timestamp_pb.LocalTimestampProto;
|
|
184
|
+
reader.readMessage(value,fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.deserializeBinaryFromReader);
|
|
185
|
+
msg.setValidFrom(value);
|
|
186
|
+
break;
|
|
187
|
+
case 9:
|
|
188
|
+
var value = new fintekkers_models_util_local_timestamp_pb.LocalTimestampProto;
|
|
189
|
+
reader.readMessage(value,fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.deserializeBinaryFromReader);
|
|
190
|
+
msg.setValidTo(value);
|
|
191
|
+
break;
|
|
192
|
+
case 10:
|
|
193
|
+
var value = new fintekkers_models_security_security_pb.SecurityProto;
|
|
194
|
+
reader.readMessage(value,fintekkers_models_security_security_pb.SecurityProto.deserializeBinaryFromReader);
|
|
195
|
+
msg.setIndexSecurity(value);
|
|
196
|
+
break;
|
|
197
|
+
case 11:
|
|
198
|
+
var value = new fintekkers_models_util_local_date_pb.LocalDateProto;
|
|
199
|
+
reader.readMessage(value,fintekkers_models_util_local_date_pb.LocalDateProto.deserializeBinaryFromReader);
|
|
200
|
+
msg.setEffectiveDate(value);
|
|
201
|
+
break;
|
|
202
|
+
case 20:
|
|
203
|
+
var value = new proto.fintekkers.models.security.IndexConstituentProto;
|
|
204
|
+
reader.readMessage(value,proto.fintekkers.models.security.IndexConstituentProto.deserializeBinaryFromReader);
|
|
205
|
+
msg.addConstituents(value);
|
|
206
|
+
break;
|
|
207
|
+
case 21:
|
|
208
|
+
var value = new fintekkers_models_util_decimal_value_pb.DecimalValueProto;
|
|
209
|
+
reader.readMessage(value,fintekkers_models_util_decimal_value_pb.DecimalValueProto.deserializeBinaryFromReader);
|
|
210
|
+
msg.setIndexDivisor(value);
|
|
211
|
+
break;
|
|
212
|
+
case 31:
|
|
213
|
+
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
214
|
+
msg.setNotes(value);
|
|
215
|
+
break;
|
|
216
|
+
default:
|
|
217
|
+
reader.skipField();
|
|
218
|
+
break;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
return msg;
|
|
222
|
+
};
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
227
|
+
* @return {!Uint8Array}
|
|
228
|
+
*/
|
|
229
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.serializeBinary = function() {
|
|
230
|
+
var writer = new jspb.BinaryWriter();
|
|
231
|
+
proto.fintekkers.models.security.IndexCompositionProto.serializeBinaryToWriter(this, writer);
|
|
232
|
+
return writer.getResultBuffer();
|
|
233
|
+
};
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
238
|
+
* format), writing to the given BinaryWriter.
|
|
239
|
+
* @param {!proto.fintekkers.models.security.IndexCompositionProto} message
|
|
240
|
+
* @param {!jspb.BinaryWriter} writer
|
|
241
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
242
|
+
*/
|
|
243
|
+
proto.fintekkers.models.security.IndexCompositionProto.serializeBinaryToWriter = function(message, writer) {
|
|
244
|
+
var f = undefined;
|
|
245
|
+
f = message.getObjectClass();
|
|
246
|
+
if (f.length > 0) {
|
|
247
|
+
writer.writeString(
|
|
248
|
+
1,
|
|
249
|
+
f
|
|
250
|
+
);
|
|
251
|
+
}
|
|
252
|
+
f = message.getVersion();
|
|
253
|
+
if (f.length > 0) {
|
|
254
|
+
writer.writeString(
|
|
255
|
+
2,
|
|
256
|
+
f
|
|
257
|
+
);
|
|
258
|
+
}
|
|
259
|
+
f = message.getUuid();
|
|
260
|
+
if (f != null) {
|
|
261
|
+
writer.writeMessage(
|
|
262
|
+
5,
|
|
263
|
+
f,
|
|
264
|
+
fintekkers_models_util_uuid_pb.UUIDProto.serializeBinaryToWriter
|
|
265
|
+
);
|
|
266
|
+
}
|
|
267
|
+
f = message.getAsOf();
|
|
268
|
+
if (f != null) {
|
|
269
|
+
writer.writeMessage(
|
|
270
|
+
6,
|
|
271
|
+
f,
|
|
272
|
+
fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.serializeBinaryToWriter
|
|
273
|
+
);
|
|
274
|
+
}
|
|
275
|
+
f = message.getIsLink();
|
|
276
|
+
if (f) {
|
|
277
|
+
writer.writeBool(
|
|
278
|
+
7,
|
|
279
|
+
f
|
|
280
|
+
);
|
|
281
|
+
}
|
|
282
|
+
f = message.getValidFrom();
|
|
283
|
+
if (f != null) {
|
|
284
|
+
writer.writeMessage(
|
|
285
|
+
8,
|
|
286
|
+
f,
|
|
287
|
+
fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.serializeBinaryToWriter
|
|
288
|
+
);
|
|
289
|
+
}
|
|
290
|
+
f = message.getValidTo();
|
|
291
|
+
if (f != null) {
|
|
292
|
+
writer.writeMessage(
|
|
293
|
+
9,
|
|
294
|
+
f,
|
|
295
|
+
fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.serializeBinaryToWriter
|
|
296
|
+
);
|
|
297
|
+
}
|
|
298
|
+
f = message.getIndexSecurity();
|
|
299
|
+
if (f != null) {
|
|
300
|
+
writer.writeMessage(
|
|
301
|
+
10,
|
|
302
|
+
f,
|
|
303
|
+
fintekkers_models_security_security_pb.SecurityProto.serializeBinaryToWriter
|
|
304
|
+
);
|
|
305
|
+
}
|
|
306
|
+
f = message.getEffectiveDate();
|
|
307
|
+
if (f != null) {
|
|
308
|
+
writer.writeMessage(
|
|
309
|
+
11,
|
|
310
|
+
f,
|
|
311
|
+
fintekkers_models_util_local_date_pb.LocalDateProto.serializeBinaryToWriter
|
|
312
|
+
);
|
|
313
|
+
}
|
|
314
|
+
f = message.getConstituentsList();
|
|
315
|
+
if (f.length > 0) {
|
|
316
|
+
writer.writeRepeatedMessage(
|
|
317
|
+
20,
|
|
318
|
+
f,
|
|
319
|
+
proto.fintekkers.models.security.IndexConstituentProto.serializeBinaryToWriter
|
|
320
|
+
);
|
|
321
|
+
}
|
|
322
|
+
f = message.getIndexDivisor();
|
|
323
|
+
if (f != null) {
|
|
324
|
+
writer.writeMessage(
|
|
325
|
+
21,
|
|
326
|
+
f,
|
|
327
|
+
fintekkers_models_util_decimal_value_pb.DecimalValueProto.serializeBinaryToWriter
|
|
328
|
+
);
|
|
329
|
+
}
|
|
330
|
+
f = message.getNotes();
|
|
331
|
+
if (f.length > 0) {
|
|
332
|
+
writer.writeString(
|
|
333
|
+
31,
|
|
334
|
+
f
|
|
335
|
+
);
|
|
336
|
+
}
|
|
337
|
+
};
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* optional string object_class = 1;
|
|
342
|
+
* @return {string}
|
|
343
|
+
*/
|
|
344
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.getObjectClass = function() {
|
|
345
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
346
|
+
};
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
/**
|
|
350
|
+
* @param {string} value
|
|
351
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
352
|
+
*/
|
|
353
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.setObjectClass = function(value) {
|
|
354
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
355
|
+
};
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* optional string version = 2;
|
|
360
|
+
* @return {string}
|
|
361
|
+
*/
|
|
362
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.getVersion = function() {
|
|
363
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
364
|
+
};
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
/**
|
|
368
|
+
* @param {string} value
|
|
369
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
370
|
+
*/
|
|
371
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.setVersion = function(value) {
|
|
372
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
373
|
+
};
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* optional fintekkers.models.util.UUIDProto uuid = 5;
|
|
378
|
+
* @return {?proto.fintekkers.models.util.UUIDProto}
|
|
379
|
+
*/
|
|
380
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.getUuid = function() {
|
|
381
|
+
return /** @type{?proto.fintekkers.models.util.UUIDProto} */ (
|
|
382
|
+
jspb.Message.getWrapperField(this, fintekkers_models_util_uuid_pb.UUIDProto, 5));
|
|
383
|
+
};
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
/**
|
|
387
|
+
* @param {?proto.fintekkers.models.util.UUIDProto|undefined} value
|
|
388
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
389
|
+
*/
|
|
390
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.setUuid = function(value) {
|
|
391
|
+
return jspb.Message.setWrapperField(this, 5, value);
|
|
392
|
+
};
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
/**
|
|
396
|
+
* Clears the message field making it undefined.
|
|
397
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
398
|
+
*/
|
|
399
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.clearUuid = function() {
|
|
400
|
+
return this.setUuid(undefined);
|
|
401
|
+
};
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* Returns whether this field is set.
|
|
406
|
+
* @return {boolean}
|
|
407
|
+
*/
|
|
408
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.hasUuid = function() {
|
|
409
|
+
return jspb.Message.getField(this, 5) != null;
|
|
410
|
+
};
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
/**
|
|
414
|
+
* optional fintekkers.models.util.LocalTimestampProto as_of = 6;
|
|
415
|
+
* @return {?proto.fintekkers.models.util.LocalTimestampProto}
|
|
416
|
+
*/
|
|
417
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.getAsOf = function() {
|
|
418
|
+
return /** @type{?proto.fintekkers.models.util.LocalTimestampProto} */ (
|
|
419
|
+
jspb.Message.getWrapperField(this, fintekkers_models_util_local_timestamp_pb.LocalTimestampProto, 6));
|
|
420
|
+
};
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
/**
|
|
424
|
+
* @param {?proto.fintekkers.models.util.LocalTimestampProto|undefined} value
|
|
425
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
426
|
+
*/
|
|
427
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.setAsOf = function(value) {
|
|
428
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
429
|
+
};
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
/**
|
|
433
|
+
* Clears the message field making it undefined.
|
|
434
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
435
|
+
*/
|
|
436
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.clearAsOf = function() {
|
|
437
|
+
return this.setAsOf(undefined);
|
|
438
|
+
};
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
/**
|
|
442
|
+
* Returns whether this field is set.
|
|
443
|
+
* @return {boolean}
|
|
444
|
+
*/
|
|
445
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.hasAsOf = function() {
|
|
446
|
+
return jspb.Message.getField(this, 6) != null;
|
|
447
|
+
};
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* optional bool is_link = 7;
|
|
452
|
+
* @return {boolean}
|
|
453
|
+
*/
|
|
454
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.getIsLink = function() {
|
|
455
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 7, false));
|
|
456
|
+
};
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
/**
|
|
460
|
+
* @param {boolean} value
|
|
461
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
462
|
+
*/
|
|
463
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.setIsLink = function(value) {
|
|
464
|
+
return jspb.Message.setProto3BooleanField(this, 7, value);
|
|
465
|
+
};
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
/**
|
|
469
|
+
* optional fintekkers.models.util.LocalTimestampProto valid_from = 8;
|
|
470
|
+
* @return {?proto.fintekkers.models.util.LocalTimestampProto}
|
|
471
|
+
*/
|
|
472
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.getValidFrom = function() {
|
|
473
|
+
return /** @type{?proto.fintekkers.models.util.LocalTimestampProto} */ (
|
|
474
|
+
jspb.Message.getWrapperField(this, fintekkers_models_util_local_timestamp_pb.LocalTimestampProto, 8));
|
|
475
|
+
};
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
/**
|
|
479
|
+
* @param {?proto.fintekkers.models.util.LocalTimestampProto|undefined} value
|
|
480
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
481
|
+
*/
|
|
482
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.setValidFrom = function(value) {
|
|
483
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
484
|
+
};
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
/**
|
|
488
|
+
* Clears the message field making it undefined.
|
|
489
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
490
|
+
*/
|
|
491
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.clearValidFrom = function() {
|
|
492
|
+
return this.setValidFrom(undefined);
|
|
493
|
+
};
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
/**
|
|
497
|
+
* Returns whether this field is set.
|
|
498
|
+
* @return {boolean}
|
|
499
|
+
*/
|
|
500
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.hasValidFrom = function() {
|
|
501
|
+
return jspb.Message.getField(this, 8) != null;
|
|
502
|
+
};
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* optional fintekkers.models.util.LocalTimestampProto valid_to = 9;
|
|
507
|
+
* @return {?proto.fintekkers.models.util.LocalTimestampProto}
|
|
508
|
+
*/
|
|
509
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.getValidTo = function() {
|
|
510
|
+
return /** @type{?proto.fintekkers.models.util.LocalTimestampProto} */ (
|
|
511
|
+
jspb.Message.getWrapperField(this, fintekkers_models_util_local_timestamp_pb.LocalTimestampProto, 9));
|
|
512
|
+
};
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
/**
|
|
516
|
+
* @param {?proto.fintekkers.models.util.LocalTimestampProto|undefined} value
|
|
517
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
518
|
+
*/
|
|
519
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.setValidTo = function(value) {
|
|
520
|
+
return jspb.Message.setWrapperField(this, 9, value);
|
|
521
|
+
};
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* Clears the message field making it undefined.
|
|
526
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
527
|
+
*/
|
|
528
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.clearValidTo = function() {
|
|
529
|
+
return this.setValidTo(undefined);
|
|
530
|
+
};
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
/**
|
|
534
|
+
* Returns whether this field is set.
|
|
535
|
+
* @return {boolean}
|
|
536
|
+
*/
|
|
537
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.hasValidTo = function() {
|
|
538
|
+
return jspb.Message.getField(this, 9) != null;
|
|
539
|
+
};
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
/**
|
|
543
|
+
* optional SecurityProto index_security = 10;
|
|
544
|
+
* @return {?proto.fintekkers.models.security.SecurityProto}
|
|
545
|
+
*/
|
|
546
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.getIndexSecurity = function() {
|
|
547
|
+
return /** @type{?proto.fintekkers.models.security.SecurityProto} */ (
|
|
548
|
+
jspb.Message.getWrapperField(this, fintekkers_models_security_security_pb.SecurityProto, 10));
|
|
549
|
+
};
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
/**
|
|
553
|
+
* @param {?proto.fintekkers.models.security.SecurityProto|undefined} value
|
|
554
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
555
|
+
*/
|
|
556
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.setIndexSecurity = function(value) {
|
|
557
|
+
return jspb.Message.setWrapperField(this, 10, value);
|
|
558
|
+
};
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
/**
|
|
562
|
+
* Clears the message field making it undefined.
|
|
563
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
564
|
+
*/
|
|
565
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.clearIndexSecurity = function() {
|
|
566
|
+
return this.setIndexSecurity(undefined);
|
|
567
|
+
};
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
/**
|
|
571
|
+
* Returns whether this field is set.
|
|
572
|
+
* @return {boolean}
|
|
573
|
+
*/
|
|
574
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.hasIndexSecurity = function() {
|
|
575
|
+
return jspb.Message.getField(this, 10) != null;
|
|
576
|
+
};
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
/**
|
|
580
|
+
* optional fintekkers.models.util.LocalDateProto effective_date = 11;
|
|
581
|
+
* @return {?proto.fintekkers.models.util.LocalDateProto}
|
|
582
|
+
*/
|
|
583
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.getEffectiveDate = function() {
|
|
584
|
+
return /** @type{?proto.fintekkers.models.util.LocalDateProto} */ (
|
|
585
|
+
jspb.Message.getWrapperField(this, fintekkers_models_util_local_date_pb.LocalDateProto, 11));
|
|
586
|
+
};
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* @param {?proto.fintekkers.models.util.LocalDateProto|undefined} value
|
|
591
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
592
|
+
*/
|
|
593
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.setEffectiveDate = function(value) {
|
|
594
|
+
return jspb.Message.setWrapperField(this, 11, value);
|
|
595
|
+
};
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
/**
|
|
599
|
+
* Clears the message field making it undefined.
|
|
600
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
601
|
+
*/
|
|
602
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.clearEffectiveDate = function() {
|
|
603
|
+
return this.setEffectiveDate(undefined);
|
|
604
|
+
};
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* Returns whether this field is set.
|
|
609
|
+
* @return {boolean}
|
|
610
|
+
*/
|
|
611
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.hasEffectiveDate = function() {
|
|
612
|
+
return jspb.Message.getField(this, 11) != null;
|
|
613
|
+
};
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
/**
|
|
617
|
+
* repeated IndexConstituentProto constituents = 20;
|
|
618
|
+
* @return {!Array<!proto.fintekkers.models.security.IndexConstituentProto>}
|
|
619
|
+
*/
|
|
620
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.getConstituentsList = function() {
|
|
621
|
+
return /** @type{!Array<!proto.fintekkers.models.security.IndexConstituentProto>} */ (
|
|
622
|
+
jspb.Message.getRepeatedWrapperField(this, proto.fintekkers.models.security.IndexConstituentProto, 20));
|
|
623
|
+
};
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
* @param {!Array<!proto.fintekkers.models.security.IndexConstituentProto>} value
|
|
628
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
629
|
+
*/
|
|
630
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.setConstituentsList = function(value) {
|
|
631
|
+
return jspb.Message.setRepeatedWrapperField(this, 20, value);
|
|
632
|
+
};
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
/**
|
|
636
|
+
* @param {!proto.fintekkers.models.security.IndexConstituentProto=} opt_value
|
|
637
|
+
* @param {number=} opt_index
|
|
638
|
+
* @return {!proto.fintekkers.models.security.IndexConstituentProto}
|
|
639
|
+
*/
|
|
640
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.addConstituents = function(opt_value, opt_index) {
|
|
641
|
+
return jspb.Message.addToRepeatedWrapperField(this, 20, opt_value, proto.fintekkers.models.security.IndexConstituentProto, opt_index);
|
|
642
|
+
};
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
/**
|
|
646
|
+
* Clears the list making it empty but non-null.
|
|
647
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
648
|
+
*/
|
|
649
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.clearConstituentsList = function() {
|
|
650
|
+
return this.setConstituentsList([]);
|
|
651
|
+
};
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
/**
|
|
655
|
+
* optional fintekkers.models.util.DecimalValueProto index_divisor = 21;
|
|
656
|
+
* @return {?proto.fintekkers.models.util.DecimalValueProto}
|
|
657
|
+
*/
|
|
658
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.getIndexDivisor = function() {
|
|
659
|
+
return /** @type{?proto.fintekkers.models.util.DecimalValueProto} */ (
|
|
660
|
+
jspb.Message.getWrapperField(this, fintekkers_models_util_decimal_value_pb.DecimalValueProto, 21));
|
|
661
|
+
};
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
/**
|
|
665
|
+
* @param {?proto.fintekkers.models.util.DecimalValueProto|undefined} value
|
|
666
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
667
|
+
*/
|
|
668
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.setIndexDivisor = function(value) {
|
|
669
|
+
return jspb.Message.setWrapperField(this, 21, value);
|
|
670
|
+
};
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
/**
|
|
674
|
+
* Clears the message field making it undefined.
|
|
675
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
676
|
+
*/
|
|
677
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.clearIndexDivisor = function() {
|
|
678
|
+
return this.setIndexDivisor(undefined);
|
|
679
|
+
};
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
/**
|
|
683
|
+
* Returns whether this field is set.
|
|
684
|
+
* @return {boolean}
|
|
685
|
+
*/
|
|
686
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.hasIndexDivisor = function() {
|
|
687
|
+
return jspb.Message.getField(this, 21) != null;
|
|
688
|
+
};
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
/**
|
|
692
|
+
* optional string notes = 31;
|
|
693
|
+
* @return {string}
|
|
694
|
+
*/
|
|
695
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.getNotes = function() {
|
|
696
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 31, ""));
|
|
697
|
+
};
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
/**
|
|
701
|
+
* @param {string} value
|
|
702
|
+
* @return {!proto.fintekkers.models.security.IndexCompositionProto} returns this
|
|
703
|
+
*/
|
|
704
|
+
proto.fintekkers.models.security.IndexCompositionProto.prototype.setNotes = function(value) {
|
|
705
|
+
return jspb.Message.setProto3StringField(this, 31, value);
|
|
706
|
+
};
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
713
|
+
/**
|
|
714
|
+
* Creates an object representation of this proto.
|
|
715
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
716
|
+
* Optional fields that are not set will be set to undefined.
|
|
717
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
718
|
+
* For the list of reserved names please see:
|
|
719
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
720
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
721
|
+
* JSPB instance for transitional soy proto support:
|
|
722
|
+
* http://goto/soy-param-migration
|
|
723
|
+
* @return {!Object}
|
|
724
|
+
*/
|
|
725
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.toObject = function(opt_includeInstance) {
|
|
726
|
+
return proto.fintekkers.models.security.IndexConstituentProto.toObject(opt_includeInstance, this);
|
|
727
|
+
};
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
/**
|
|
731
|
+
* Static version of the {@see toObject} method.
|
|
732
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
733
|
+
* the JSPB instance for transitional soy proto support:
|
|
734
|
+
* http://goto/soy-param-migration
|
|
735
|
+
* @param {!proto.fintekkers.models.security.IndexConstituentProto} msg The msg instance to transform.
|
|
736
|
+
* @return {!Object}
|
|
737
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
738
|
+
*/
|
|
739
|
+
proto.fintekkers.models.security.IndexConstituentProto.toObject = function(includeInstance, msg) {
|
|
740
|
+
var f, obj = {
|
|
741
|
+
security: (f = msg.getSecurity()) && fintekkers_models_security_security_pb.SecurityProto.toObject(includeInstance, f),
|
|
742
|
+
weight: (f = msg.getWeight()) && fintekkers_models_util_decimal_value_pb.DecimalValueProto.toObject(includeInstance, f),
|
|
743
|
+
sharesInIndex: (f = msg.getSharesInIndex()) && fintekkers_models_util_decimal_value_pb.DecimalValueProto.toObject(includeInstance, f),
|
|
744
|
+
currency: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
745
|
+
};
|
|
746
|
+
|
|
747
|
+
if (includeInstance) {
|
|
748
|
+
obj.$jspbMessageInstance = msg;
|
|
749
|
+
}
|
|
750
|
+
return obj;
|
|
751
|
+
};
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
/**
|
|
756
|
+
* Deserializes binary data (in protobuf wire format).
|
|
757
|
+
* @param {jspb.binary.bytesource.ByteSource} bytes The bytes to deserialize.
|
|
758
|
+
* @return {!proto.fintekkers.models.security.IndexConstituentProto}
|
|
759
|
+
*/
|
|
760
|
+
proto.fintekkers.models.security.IndexConstituentProto.deserializeBinary = function(bytes) {
|
|
761
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
762
|
+
var msg = new proto.fintekkers.models.security.IndexConstituentProto;
|
|
763
|
+
return proto.fintekkers.models.security.IndexConstituentProto.deserializeBinaryFromReader(msg, reader);
|
|
764
|
+
};
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
/**
|
|
768
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
769
|
+
* given reader into the given message object.
|
|
770
|
+
* @param {!proto.fintekkers.models.security.IndexConstituentProto} msg The message object to deserialize into.
|
|
771
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
772
|
+
* @return {!proto.fintekkers.models.security.IndexConstituentProto}
|
|
773
|
+
*/
|
|
774
|
+
proto.fintekkers.models.security.IndexConstituentProto.deserializeBinaryFromReader = function(msg, reader) {
|
|
775
|
+
while (reader.nextField()) {
|
|
776
|
+
if (reader.isEndGroup()) {
|
|
777
|
+
break;
|
|
778
|
+
}
|
|
779
|
+
var field = reader.getFieldNumber();
|
|
780
|
+
switch (field) {
|
|
781
|
+
case 1:
|
|
782
|
+
var value = new fintekkers_models_security_security_pb.SecurityProto;
|
|
783
|
+
reader.readMessage(value,fintekkers_models_security_security_pb.SecurityProto.deserializeBinaryFromReader);
|
|
784
|
+
msg.setSecurity(value);
|
|
785
|
+
break;
|
|
786
|
+
case 2:
|
|
787
|
+
var value = new fintekkers_models_util_decimal_value_pb.DecimalValueProto;
|
|
788
|
+
reader.readMessage(value,fintekkers_models_util_decimal_value_pb.DecimalValueProto.deserializeBinaryFromReader);
|
|
789
|
+
msg.setWeight(value);
|
|
790
|
+
break;
|
|
791
|
+
case 3:
|
|
792
|
+
var value = new fintekkers_models_util_decimal_value_pb.DecimalValueProto;
|
|
793
|
+
reader.readMessage(value,fintekkers_models_util_decimal_value_pb.DecimalValueProto.deserializeBinaryFromReader);
|
|
794
|
+
msg.setSharesInIndex(value);
|
|
795
|
+
break;
|
|
796
|
+
case 5:
|
|
797
|
+
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
798
|
+
msg.setCurrency(value);
|
|
799
|
+
break;
|
|
800
|
+
default:
|
|
801
|
+
reader.skipField();
|
|
802
|
+
break;
|
|
803
|
+
}
|
|
804
|
+
}
|
|
805
|
+
return msg;
|
|
806
|
+
};
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
/**
|
|
810
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
811
|
+
* @return {!Uint8Array}
|
|
812
|
+
*/
|
|
813
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.serializeBinary = function() {
|
|
814
|
+
var writer = new jspb.BinaryWriter();
|
|
815
|
+
proto.fintekkers.models.security.IndexConstituentProto.serializeBinaryToWriter(this, writer);
|
|
816
|
+
return writer.getResultBuffer();
|
|
817
|
+
};
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
/**
|
|
821
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
822
|
+
* format), writing to the given BinaryWriter.
|
|
823
|
+
* @param {!proto.fintekkers.models.security.IndexConstituentProto} message
|
|
824
|
+
* @param {!jspb.BinaryWriter} writer
|
|
825
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
826
|
+
*/
|
|
827
|
+
proto.fintekkers.models.security.IndexConstituentProto.serializeBinaryToWriter = function(message, writer) {
|
|
828
|
+
var f = undefined;
|
|
829
|
+
f = message.getSecurity();
|
|
830
|
+
if (f != null) {
|
|
831
|
+
writer.writeMessage(
|
|
832
|
+
1,
|
|
833
|
+
f,
|
|
834
|
+
fintekkers_models_security_security_pb.SecurityProto.serializeBinaryToWriter
|
|
835
|
+
);
|
|
836
|
+
}
|
|
837
|
+
f = message.getWeight();
|
|
838
|
+
if (f != null) {
|
|
839
|
+
writer.writeMessage(
|
|
840
|
+
2,
|
|
841
|
+
f,
|
|
842
|
+
fintekkers_models_util_decimal_value_pb.DecimalValueProto.serializeBinaryToWriter
|
|
843
|
+
);
|
|
844
|
+
}
|
|
845
|
+
f = message.getSharesInIndex();
|
|
846
|
+
if (f != null) {
|
|
847
|
+
writer.writeMessage(
|
|
848
|
+
3,
|
|
849
|
+
f,
|
|
850
|
+
fintekkers_models_util_decimal_value_pb.DecimalValueProto.serializeBinaryToWriter
|
|
851
|
+
);
|
|
852
|
+
}
|
|
853
|
+
f = message.getCurrency();
|
|
854
|
+
if (f.length > 0) {
|
|
855
|
+
writer.writeString(
|
|
856
|
+
5,
|
|
857
|
+
f
|
|
858
|
+
);
|
|
859
|
+
}
|
|
860
|
+
};
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
/**
|
|
864
|
+
* optional SecurityProto security = 1;
|
|
865
|
+
* @return {?proto.fintekkers.models.security.SecurityProto}
|
|
866
|
+
*/
|
|
867
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.getSecurity = function() {
|
|
868
|
+
return /** @type{?proto.fintekkers.models.security.SecurityProto} */ (
|
|
869
|
+
jspb.Message.getWrapperField(this, fintekkers_models_security_security_pb.SecurityProto, 1));
|
|
870
|
+
};
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
/**
|
|
874
|
+
* @param {?proto.fintekkers.models.security.SecurityProto|undefined} value
|
|
875
|
+
* @return {!proto.fintekkers.models.security.IndexConstituentProto} returns this
|
|
876
|
+
*/
|
|
877
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.setSecurity = function(value) {
|
|
878
|
+
return jspb.Message.setWrapperField(this, 1, value);
|
|
879
|
+
};
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
/**
|
|
883
|
+
* Clears the message field making it undefined.
|
|
884
|
+
* @return {!proto.fintekkers.models.security.IndexConstituentProto} returns this
|
|
885
|
+
*/
|
|
886
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.clearSecurity = function() {
|
|
887
|
+
return this.setSecurity(undefined);
|
|
888
|
+
};
|
|
889
|
+
|
|
890
|
+
|
|
891
|
+
/**
|
|
892
|
+
* Returns whether this field is set.
|
|
893
|
+
* @return {boolean}
|
|
894
|
+
*/
|
|
895
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.hasSecurity = function() {
|
|
896
|
+
return jspb.Message.getField(this, 1) != null;
|
|
897
|
+
};
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
/**
|
|
901
|
+
* optional fintekkers.models.util.DecimalValueProto weight = 2;
|
|
902
|
+
* @return {?proto.fintekkers.models.util.DecimalValueProto}
|
|
903
|
+
*/
|
|
904
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.getWeight = function() {
|
|
905
|
+
return /** @type{?proto.fintekkers.models.util.DecimalValueProto} */ (
|
|
906
|
+
jspb.Message.getWrapperField(this, fintekkers_models_util_decimal_value_pb.DecimalValueProto, 2));
|
|
907
|
+
};
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
/**
|
|
911
|
+
* @param {?proto.fintekkers.models.util.DecimalValueProto|undefined} value
|
|
912
|
+
* @return {!proto.fintekkers.models.security.IndexConstituentProto} returns this
|
|
913
|
+
*/
|
|
914
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.setWeight = function(value) {
|
|
915
|
+
return jspb.Message.setWrapperField(this, 2, value);
|
|
916
|
+
};
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
/**
|
|
920
|
+
* Clears the message field making it undefined.
|
|
921
|
+
* @return {!proto.fintekkers.models.security.IndexConstituentProto} returns this
|
|
922
|
+
*/
|
|
923
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.clearWeight = function() {
|
|
924
|
+
return this.setWeight(undefined);
|
|
925
|
+
};
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
/**
|
|
929
|
+
* Returns whether this field is set.
|
|
930
|
+
* @return {boolean}
|
|
931
|
+
*/
|
|
932
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.hasWeight = function() {
|
|
933
|
+
return jspb.Message.getField(this, 2) != null;
|
|
934
|
+
};
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
/**
|
|
938
|
+
* optional fintekkers.models.util.DecimalValueProto shares_in_index = 3;
|
|
939
|
+
* @return {?proto.fintekkers.models.util.DecimalValueProto}
|
|
940
|
+
*/
|
|
941
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.getSharesInIndex = function() {
|
|
942
|
+
return /** @type{?proto.fintekkers.models.util.DecimalValueProto} */ (
|
|
943
|
+
jspb.Message.getWrapperField(this, fintekkers_models_util_decimal_value_pb.DecimalValueProto, 3));
|
|
944
|
+
};
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
/**
|
|
948
|
+
* @param {?proto.fintekkers.models.util.DecimalValueProto|undefined} value
|
|
949
|
+
* @return {!proto.fintekkers.models.security.IndexConstituentProto} returns this
|
|
950
|
+
*/
|
|
951
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.setSharesInIndex = function(value) {
|
|
952
|
+
return jspb.Message.setWrapperField(this, 3, value);
|
|
953
|
+
};
|
|
954
|
+
|
|
955
|
+
|
|
956
|
+
/**
|
|
957
|
+
* Clears the message field making it undefined.
|
|
958
|
+
* @return {!proto.fintekkers.models.security.IndexConstituentProto} returns this
|
|
959
|
+
*/
|
|
960
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.clearSharesInIndex = function() {
|
|
961
|
+
return this.setSharesInIndex(undefined);
|
|
962
|
+
};
|
|
963
|
+
|
|
964
|
+
|
|
965
|
+
/**
|
|
966
|
+
* Returns whether this field is set.
|
|
967
|
+
* @return {boolean}
|
|
968
|
+
*/
|
|
969
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.hasSharesInIndex = function() {
|
|
970
|
+
return jspb.Message.getField(this, 3) != null;
|
|
971
|
+
};
|
|
972
|
+
|
|
973
|
+
|
|
974
|
+
/**
|
|
975
|
+
* optional string currency = 5;
|
|
976
|
+
* @return {string}
|
|
977
|
+
*/
|
|
978
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.getCurrency = function() {
|
|
979
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
980
|
+
};
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
/**
|
|
984
|
+
* @param {string} value
|
|
985
|
+
* @return {!proto.fintekkers.models.security.IndexConstituentProto} returns this
|
|
986
|
+
*/
|
|
987
|
+
proto.fintekkers.models.security.IndexConstituentProto.prototype.setCurrency = function(value) {
|
|
988
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
989
|
+
};
|
|
990
|
+
|
|
991
|
+
|
|
992
|
+
goog.object.extend(exports, proto.fintekkers.models.security);
|