fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 470 B
TypeScript
/**
* The relationship between Registration parties.
* - Tag: 517
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const OwnershipType: Readonly<{
/** Joint Investors */
readonly JointInvestors: "J";
/** Tenants in Common */
readonly TenantsInCommon: "T";
/** Joint Trustees */
readonly JointTrustees: "2";
}>;
export type OwnershipType = (typeof OwnershipType)[keyof typeof OwnershipType];