/** * Generated by orval v7.21.0 🍺 * Do not edit manually. * Negodata Api Server * OpenAPI spec version: 0.1.0 */ import type { ErrorInfo } from './errorInfo'; import type { ResTargetBreakdownMsg } from './resTargetBreakdownMsg'; import type { ResTargetBreakdownMdPrice } from './resTargetBreakdownMdPrice'; import type { ResTargetBreakdownInternetLowest } from './resTargetBreakdownInternetLowest'; import type { ResTargetBreakdownPurchase } from './resTargetBreakdownPurchase'; import type { ResTargetBreakdownSelling } from './resTargetBreakdownSelling'; import type { TargetCandidate } from './targetCandidate'; import type { ResTargetBreakdownChosenBasis } from './resTargetBreakdownChosenBasis'; import type { ResTargetBreakdownAnchoringPrice } from './resTargetBreakdownAnchoringPrice'; export interface ResTargetBreakdown { result?: ErrorInfo; msg?: ResTargetBreakdownMsg; is_new?: boolean; is_inherited?: boolean; md_price?: ResTargetBreakdownMdPrice; internet_lowest?: ResTargetBreakdownInternetLowest; purchase?: ResTargetBreakdownPurchase; selling?: ResTargetBreakdownSelling; fee?: number; margin?: number; anchoring_value?: number; candidates?: TargetCandidate[]; chosen_basis?: ResTargetBreakdownChosenBasis; target_price?: number; anchoring_price?: ResTargetBreakdownAnchoringPrice; }