|
4 | 4 | # Copyright (c) 2019 Ingram Micro. All Rights Reserved. |
5 | 5 |
|
6 | 6 | from .activation_response import ActivationTemplateResponse, ActivationTileResponse |
7 | | -from .asset import Asset, AssetSchema |
8 | | -from .base import BaseModel, BaseSchema |
9 | | -from .company import Company, CompanySchema |
10 | | -from .connection import Connection, ConnectionSchema |
11 | | -from .contact import Contact, ContactInfo, ContactInfoSchema, ContactSchema, \ |
12 | | - PhoneNumber, PhoneNumberSchema |
13 | | -from .event import EventInfo, EventInfoSchema, Events, EventsSchema |
14 | | -from .fulfillment import Fulfillment, FulfillmentSchema |
15 | | -from .hub import Hub, HubInstance, HubInstanceSchema, ExtIdHub, HubSchema, ExtIdHubSchema, \ |
16 | | - HubStats, HubStatsSchema |
17 | | -from .marketplace import Activation, ActivationSchema, Agreement, AgreementSchema, AgreementStats,\ |
18 | | - AgreementStatsSchema, Contract, ContractSchema, Marketplace, MarketplaceSchema |
19 | | -from .parameters import Constraints, ConstraintsSchema, Param, ParamSchema, ValueChoice, \ |
20 | | - ValueChoiceSchema |
21 | | -from .product import CustomerUiSettings, CustomerUiSettingsSchema, Document, DocumentSchema, \ |
22 | | - DownloadLink, DownloadLinkSchema, Item, ItemSchema, Product, ProductConfiguration, \ |
23 | | - ProductConfigurationSchema, ProductSchema, Renewal, RenewalSchema |
24 | | -from .server_error_response import ServerErrorResponse, ServerErrorResponseSchema |
25 | | -from .tier_config import Account, AccountSchema, Template, TemplateSchema, TierConfig, \ |
26 | | - TierConfigRequest, TierConfigRequestSchema, TierConfigSchema |
27 | | -from .tiers import Tier, Tiers, TierSchema, TiersSchema |
28 | | -from .usage import UsageFile, UsageFileSchema, UsageListing, UsageListingSchema, UsageRecord, \ |
29 | | - UsageRecords, UsageRecordSchema, UsageRecordsSchema |
| 7 | +from .asset import Asset |
| 8 | +from .base import BaseModel |
| 9 | +from .company import Company |
| 10 | +from .connection import Connection |
| 11 | +from .contact import Contact, ContactInfo, PhoneNumber |
| 12 | +from .event import EventInfo, Events |
| 13 | +from .fulfillment import Fulfillment |
| 14 | +from .hub import Hub, HubInstance, ExtIdHub, HubStats |
| 15 | +from .marketplace import Activation, Agreement, AgreementStats, Contract, Marketplace |
| 16 | +from .parameters import Constraints, Param, ValueChoice |
| 17 | +from .product import CustomerUiSettings, Document, DownloadLink, Item, Product, \ |
| 18 | + ProductConfiguration, Renewal |
| 19 | +from .server_error_response import ServerErrorResponse |
| 20 | +from .tier_config import Account, Template, TierConfig, TierConfigRequest |
| 21 | +from .tiers import Tier, Tiers |
| 22 | +from .usage import UsageFile, UsageListing, UsageRecord, UsageRecords |
30 | 23 |
|
31 | 24 | __all__ = [ |
32 | 25 | 'Account', |
33 | | - 'AccountSchema', |
34 | 26 | 'Activation', |
35 | | - 'ActivationSchema', |
36 | 27 | 'ActivationTemplateResponse', |
37 | 28 | 'ActivationTileResponse', |
38 | 29 | 'Agreement', |
39 | | - 'AgreementSchema', |
40 | 30 | 'AgreementStats', |
41 | | - 'AgreementStatsSchema', |
42 | 31 | 'Asset', |
43 | | - 'AssetSchema', |
44 | 32 | 'BaseModel', |
45 | | - 'BaseSchema', |
46 | 33 | 'Company', |
47 | | - 'CompanySchema', |
48 | 34 | 'Connection', |
49 | | - 'ConnectionSchema', |
50 | 35 | 'Constraints', |
51 | | - 'ConstraintsSchema', |
52 | 36 | 'Contact', |
53 | 37 | 'ContactInfo', |
54 | | - 'ContactInfoSchema', |
55 | | - 'ContactSchema', |
56 | 38 | 'Contract', |
57 | | - 'ContractSchema', |
58 | 39 | 'CustomerUiSettings', |
59 | | - 'CustomerUiSettingsSchema', |
60 | 40 | 'Document', |
61 | | - 'DocumentSchema', |
62 | 41 | 'DownloadLink', |
63 | | - 'DownloadLinkSchema', |
64 | 42 | 'EventInfo', |
65 | | - 'EventInfoSchema', |
66 | 43 | 'Events', |
67 | | - 'EventsSchema', |
68 | 44 | 'ExtIdHub', |
69 | | - 'ExtIdHubSchema', |
70 | 45 | 'Fulfillment', |
71 | | - 'FulfillmentSchema', |
72 | 46 | 'Hub', |
73 | 47 | 'HubInstance', |
74 | | - 'HubInstanceSchema', |
75 | | - 'HubSchema', |
76 | 48 | 'HubStats', |
77 | | - 'HubStatsSchema', |
78 | 49 | 'Item', |
79 | | - 'ItemSchema', |
80 | 50 | 'Marketplace', |
81 | | - 'MarketplaceSchema', |
82 | 51 | 'Param', |
83 | | - 'ParamSchema', |
84 | 52 | 'PhoneNumber', |
85 | | - 'PhoneNumberSchema', |
86 | 53 | 'Product', |
87 | 54 | 'ProductConfiguration', |
88 | | - 'ProductConfigurationSchema', |
89 | | - 'ProductSchema', |
90 | 55 | 'Renewal', |
91 | | - 'RenewalSchema', |
92 | 56 | 'ServerErrorResponse', |
93 | | - 'ServerErrorResponseSchema', |
94 | 57 | 'Template', |
95 | | - 'TemplateSchema', |
96 | 58 | 'Tier', |
97 | 59 | 'TierConfig', |
98 | 60 | 'TierConfigRequest', |
99 | | - 'TierConfigRequestSchema', |
100 | | - 'TierConfigSchema', |
101 | 61 | 'Tiers', |
102 | | - 'TierSchema', |
103 | | - 'TiersSchema', |
104 | 62 | 'UsageFile', |
105 | | - 'UsageFileSchema', |
106 | 63 | 'UsageListing', |
107 | | - 'UsageListingSchema', |
108 | 64 | 'UsageRecord', |
109 | 65 | 'UsageRecords', |
110 | | - 'UsageRecordSchema', |
111 | | - 'UsageRecordsSchema', |
112 | 66 | 'ValueChoice', |
113 | | - 'ValueChoiceSchema', |
114 | 67 | ] |
0 commit comments