39 lines
1.4 KiB
TypeScript
39 lines
1.4 KiB
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Negodata Api Server
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { QuotationType } from './quotationType';
|
|
import type { SessionDataAnchoringPrice } from './sessionDataAnchoringPrice';
|
|
import type { SessionStatus } from './sessionStatus';
|
|
import type { SessionDataBidPrice } from './sessionDataBidPrice';
|
|
import type { SessionDataBidAt } from './sessionDataBidAt';
|
|
import type { SessionDataRejectReason } from './sessionDataRejectReason';
|
|
import type { SessionDataRejectPrice } from './sessionDataRejectPrice';
|
|
import type { SessionDataRejectDeliveryType } from './sessionDataRejectDeliveryType';
|
|
import type { SessionDataEmailSentAt } from './sessionDataEmailSentAt';
|
|
import type { SessionDataCustom } from './sessionDataCustom';
|
|
|
|
export interface SessionData {
|
|
session_id: string;
|
|
qt_id: string;
|
|
supplier_id: string;
|
|
item_id: string;
|
|
qt_number: string;
|
|
qt_round: number;
|
|
qt_type: QuotationType;
|
|
target_price: number;
|
|
anchoring_price?: SessionDataAnchoringPrice;
|
|
status: SessionStatus;
|
|
bid_price?: SessionDataBidPrice;
|
|
bid_at?: SessionDataBidAt;
|
|
end_time: string;
|
|
reject_reason?: SessionDataRejectReason;
|
|
reject_price?: SessionDataRejectPrice;
|
|
reject_delivery_type?: SessionDataRejectDeliveryType;
|
|
email_sent_at?: SessionDataEmailSentAt;
|
|
custom?: SessionDataCustom;
|
|
url?: string;
|
|
}
|