| 1234567891011121314151617181920212223242526272829303132333435363738 |
- namespace Application.Features.Api.Stocks.GetLendingHistory;
- public sealed class Response
- {
- public required string Isin { get; init; }
- public int Total { get; init; }
- public required IReadOnlyList<Row> List { get; init; }
- public sealed class Row
- {
- /// <summary>기준일 (STD_DT)</summary>
- public DateOnly StdDt { get; init; }
- /// <summary>대차잔고주수 (SLB_TR_REM_QTY)</summary>
- public long? LendingBalanceQty { get; init; }
- /// <summary>대차체결량 (MATC_QTY)</summary>
- public long? MatchedQty { get; init; }
- /// <summary>대차상환량 (RED_QTY)</summary>
- public long? RedeemedQty { get; init; }
- /// <summary>일일거래량 (TR_QTY)</summary>
- public long? TradeQty { get; init; }
- /// <summary>외국인 대여잔고비율 % (FRINER_LEND_REM_RATIO)</summary>
- public decimal? ForeignLendRatio { get; init; }
- /// <summary>내국인 대여잔고비율 % (NATIVE_LEND_REM_RATIO)</summary>
- public decimal? NativeLendRatio { get; init; }
- /// <summary>외국인 차입잔고비율 % (FRINER_BRW_REM_RATIO)</summary>
- public decimal? ForeignBorrowRatio { get; init; }
- /// <summary>내국인 차입잔고비율 % (NATIVE_BRW_REM_RATIO)</summary>
- public decimal? NativeBorrowRatio { get; init; }
- }
- }
|