|
3 | 3 | # This file is part of the Ingram Micro Cloud Blue Connect SDK. |
4 | 4 | # Copyright (c) 2019 Ingram Micro. All Rights Reserved. |
5 | 5 |
|
6 | | -from .activation_response import ActivationTemplateResponse, ActivationTileResponse |
| 6 | +from .activation import Activation |
| 7 | +from .activation_template_response import ActivationTemplateResponse |
| 8 | +from .activation_tile_response import ActivationTileResponse |
| 9 | +from .agreement import Agreement |
| 10 | +from .agreement_stats import AgreementStats |
7 | 11 | from .asset import Asset |
8 | 12 | from .base import BaseModel |
9 | | -from .company import Company, User |
| 13 | +from .company import Company |
| 14 | +from .configuration import Configuration |
10 | 15 | from .connection import Connection |
11 | | -from .contact import Contact, ContactInfo, PhoneNumber |
12 | | -from .conversation import Conversation, ConversationMessage |
13 | | -from .event import EventInfo, Events |
| 16 | +from .constraints import Constraints |
| 17 | +from .contact import Contact |
| 18 | +from .contact_info import ContactInfo |
| 19 | +from .contract import Contract |
| 20 | +from .conversation import Conversation |
| 21 | +from .conversation_message import ConversationMessage |
| 22 | +from .customer_ui_settings import CustomerUiSettings |
| 23 | +from .document import Document |
| 24 | +from .download_link import DownloadLink |
| 25 | +from .event import Event |
| 26 | +from .events import Events |
| 27 | +from .ext_id_hub import ExtIdHub |
14 | 28 | from .fulfillment import Fulfillment |
15 | | -from .hub import Hub, HubInstance, ExtIdHub, HubStats |
16 | | -from .marketplace import Activation, Agreement, AgreementStats, Contract, Marketplace |
17 | | -from .parameters import Constraints, Param, ValueChoice |
18 | | -from .product import CustomerUiSettings, Document, DownloadLink, Item, Product, \ |
19 | | - ProductCategory, ProductConfiguration, ProductFamily, ProductStats, ProductStatsInfo, Renewal |
| 29 | +from .hub import Hub |
| 30 | +from .hub_instance import HubInstance |
| 31 | +from .hub_stats import HubStats |
| 32 | +from .item import Item |
| 33 | +from .marketplace import Marketplace |
| 34 | +from .param import Param |
| 35 | +from .phone_number import PhoneNumber |
| 36 | +from .product import Product |
| 37 | +from .product_category import ProductCategory |
| 38 | +from .product_configuration import ProductConfiguration |
| 39 | +from .product_family import ProductFamily |
| 40 | +from .product_stats import ProductStats |
| 41 | +from .product_stats_info import ProductStatsInfo |
| 42 | +from .renewal import Renewal |
20 | 43 | from .server_error_response import ServerErrorResponse |
21 | | -from .tier_config import Configuration, Template, TierAccount, TierAccounts, TierConfig, \ |
22 | | - TierConfigRequest |
23 | | -from .usage import UsageFile, UsageListing, UsageRecord, UsageRecords |
| 44 | +from .template import Template |
| 45 | +from .tier_account import TierAccount |
| 46 | +from .tier_accounts import TierAccounts |
| 47 | +from .tier_config import TierConfig |
| 48 | +from .tier_config_request import TierConfigRequest |
| 49 | +from .usage_file import UsageFile |
| 50 | +from .usage_listing import UsageListing |
| 51 | +from .usage_record import UsageRecord |
| 52 | +from .usage_records import UsageRecords |
| 53 | +from .user import User |
| 54 | +from .value_choice import ValueChoice |
24 | 55 |
|
25 | 56 | __all__ = [ |
26 | 57 | 'Activation', |
|
42 | 73 | 'CustomerUiSettings', |
43 | 74 | 'Document', |
44 | 75 | 'DownloadLink', |
45 | | - 'EventInfo', |
| 76 | + 'Event', |
46 | 77 | 'Events', |
47 | 78 | 'ExtIdHub', |
48 | 79 | 'Fulfillment', |
|
0 commit comments