1getObject = {
2    'accountId': 1234,
3    'id': 1234,
4    'name': 'TestQuote1234',
5    'quoteKey': '1234test4321',
6    'order': {
7        'id': 37623333,
8        'items': [
9            {
10                'categoryCode': 'guest_core',
11                'description': '4 x 2.0 GHz or higher Cores',
12                'id': 468394713,
13                'itemId': 859,
14                'itemPriceId': '1642',
15                'oneTimeAfterTaxAmount': '0',
16                'oneTimeFee': '0',
17                'oneTimeFeeTaxRate': '0',
18                'oneTimeTaxAmount': '0',
19                'quantity': 1,
20                'recurringAfterTaxAmount': '0',
21                'recurringFee': '0',
22                'recurringTaxAmount': '0',
23                'setupAfterTaxAmount': '0',
24                'setupFee': '0',
25                'setupFeeDeferralMonths': None,
26                'setupFeeTaxRate': '0',
27                'setupTaxAmount': '0',
28                'package': {'id': 46, 'keyName': 'CLOUD_SERVER'}
29            },
30        ]
31    }
32}
33
34getRecalculatedOrderContainer = {
35    'presetId': '',
36    'prices': [{
37        'id': 1921
38    }],
39    'quantity': 1,
40    'packageId': 50,
41    'useHourlyPricing': '',
42    'reservedCapacityId': '',
43
44}
45
46verifyOrder = {
47    'orderId': 1234,
48    'orderDate': '2013-08-01 15:23:45',
49    'useHourlyPricing': False,
50    'prices': [{
51        'id': 1,
52        'laborFee': '2',
53        'oneTimeFee': '2',
54        'oneTimeFeeTax': '.1',
55        'quantity': 1,
56        'recurringFee': '2',
57        'recurringFeeTax': '.1',
58        'hourlyRecurringFee': '2',
59        'setupFee': '1',
60        'item': {'id': 1, 'description': 'this is a thing', 'keyName': 'TheThing'},
61    }]}
62
63placeOrder = {
64    'orderId': 1234,
65    'orderDate': '2013-08-01 15:23:45',
66    'orderDetails': {
67        'prices': [{
68            'id': 1,
69            'laborFee': '2',
70            'oneTimeFee': '2',
71            'oneTimeFeeTax': '.1',
72            'quantity': 1,
73            'recurringFee': '2',
74            'recurringFeeTax': '.1',
75            'hourlyRecurringFee': '2',
76            'setupFee': '1',
77            'item': {'id': 1, 'description': 'this is a thing'},
78        }],
79        'virtualGuests': [{
80            'id': 1234567,
81            'globalIdentifier': '1a2b3c-1701',
82            'fullyQualifiedDomainName': 'test.guest.com'
83        }],
84    },
85    'placedOrder': {
86        'id': 37985543,
87        'orderQuoteId': 2639077,
88        'orderTypeId': 4,
89        'status': 'PENDING_AUTO_APPROVAL',
90        'items': [
91            {
92                'categoryCode': 'guest_core',
93                'description': '4 x 2.0 GHz or higher Cores',
94                'id': 472527133,
95                'itemId': 859,
96                'itemPriceId': '1642',
97                'laborFee': '0',
98                'oneTimeFee': '0',
99                'recurringFee': '0',
100                'setupFee': '0',
101            }
102        ]
103    }
104}
105
106saveQuote = getObject
107