Interface BulkListingsResult

interface BulkListingsResult {
    result: {
        success: boolean;
        orderHash: string;
        order?: Order;
    }[];
}

Properties

Properties

result: {
    success: boolean;
    orderHash: string;
    order?: Order;
}[]