export interface IBondBase { id: string; symbol: string; bondExchange: string; } export interface IBond extends IBondBase { assetId: string; } export interface IBondInput { id: string; assetId: string; symbol: string; bondExchange: string; } export interface IBondOutput extends IBondBase { assetId: string; } export interface IBondDeleteInput { id: string; }