fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
90 lines (89 loc) • 2.71 kB
TypeScript
/**
* Used to specify the type of the party relationship.
* - Tag: 1515
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PartyRelationship: Readonly<{
/** Is also */
readonly IsAlso: 0;
/** Clears for */
readonly ClearsFor: 1;
/** Clears through */
readonly ClearsThrough: 2;
/** Trades for */
readonly TradesFor: 3;
/** Trades through */
readonly TradesThrough: 4;
/** Sponsors */
readonly Sponsors: 5;
/** Sponsored through */
readonly SponsoredThrough: 6;
/** Provides guarantee for */
readonly ProvidesGuaranteeFor: 7;
/** Is guaranteed by */
readonly IsGuaranteedBy: 8;
/** Member of */
readonly MemberOf: 9;
/** Has members */
readonly HasMembers: 10;
/** Provides marketplace for */
readonly ProvidesMarketplaceFor: 11;
/** Participant of marketplace */
readonly ParticipantOfMarketplace: 12;
/** Carries positions for */
readonly CarriesPositionsFor: 13;
/** Posts trades to */
readonly PostsTradesTo: 14;
/** Enters trades for */
readonly EntersTradesFor: 15;
/** Enters trades through */
readonly EntersTradesThrough: 16;
/** Provides quotes to */
readonly ProvidesQuotesTo: 17;
/** Requests quotes from */
readonly RequestsQuotesFrom: 18;
/** Invests for */
readonly InvestsFor: 19;
/** Invests through */
readonly InvestsThrough: 20;
/** Brokers trades for */
readonly BrokersTradesFor: 21;
/** Brokers trades through */
readonly BrokersTradesThrough: 22;
/** Provides trading services for */
readonly ProvidesTradingServicesFor: 23;
/** Uses trading services of */
readonly UsesTradingServicesOf: 24;
/** Approves of */
readonly ApprovesOf: 25;
/** Approved by */
readonly ApprovedBy: 26;
/** Parent firm for */
readonly ParentFirmFor: 27;
/** Subsidiary of */
readonly SubsidiaryOf: 28;
/** Regulatory owner of */
readonly RegulatoryOwnerOf: 29;
/** Owned by (regulatory) */
readonly OwnedByRegulatory: 30;
/** Controls */
readonly Controls: 31;
/** Is controlled by */
readonly IsControlledBy: 32;
/** Legal / titled owner of */
readonly LegalOwnerOf: 33;
/** Owned by (legal / title) */
readonly OwnedByLegal: 34;
/** Beneficial owner of */
readonly BeneficialOwnerOf: 35;
/** Owned by (beneficial) */
readonly OwnedByBeneficial: 36;
/** Settles for */
readonly SettlesFor: 37;
/** Settles through */
readonly SettlesThrough: 38;
}>;
export type PartyRelationship = (typeof PartyRelationship)[keyof typeof PartyRelationship];