partnercenter/azext_partnercenter/models/__init__.py (34 lines of code) (raw):

# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- from .offer import Offer, OfferType from .plan import Plan from .listing import Listing from .resource import Resource from .listing_video import ListingVideo from .listing_image import ListingImage from .listing_contact import ListingContact from .listing_uri import ListingUri from .offer_setup import OfferSetup from .plan_listing import PlanListing from .target_type import TargetType from .offer_submission import OfferSubmission from .plan_technical_configuration_type import PlanTechnicalConfigurationType from .media_type import MediaType from .offer_package_type import AzureApplicationPackageType __all__ = [ "AzureApplicationPackageType", "Plan", "Listing", "PlanListing", "PlanTechnicalConfigurationType", "MediaType", "Offer", "OfferType", "OfferSetup", "OfferSubmission", "ListingVideo", "ListingContact", "ListingImage", "ListingUri", "Listing", "TargetType", "Resource", ]