openskin-client 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- openskin_client/__init__.py +559 -0
- openskin_client/api/__init__.py +11 -0
- openskin_client/api/platform_v2_api.py +7931 -0
- openskin_client/api/platform_v2_automation_api.py +12100 -0
- openskin_client/api/platform_v2_market_analytics_api.py +2168 -0
- openskin_client/api/platform_v2_media_api.py +4174 -0
- openskin_client/api/platform_v2_pricing_api.py +2695 -0
- openskin_client/api/platform_v2_profiles_api.py +1692 -0
- openskin_client/api/platform_v2_webhooks_api.py +2584 -0
- openskin_client/api_client.py +837 -0
- openskin_client/api_response.py +21 -0
- openskin_client/configuration.py +626 -0
- openskin_client/exceptions.py +219 -0
- openskin_client/models/__init__.py +266 -0
- openskin_client/models/v2_aggregate_price_history_page.py +138 -0
- openskin_client/models/v2_aggregate_price_history_point.py +166 -0
- openskin_client/models/v2_aggregate_price_history_quote.py +119 -0
- openskin_client/models/v2_aggregate_price_history_source.py +122 -0
- openskin_client/models/v2_audit_event.py +158 -0
- openskin_client/models/v2_audit_export_job.py +142 -0
- openskin_client/models/v2_audit_export_job_response.py +93 -0
- openskin_client/models/v2_audit_export_page.py +101 -0
- openskin_client/models/v2_audit_export_page_response.py +93 -0
- openskin_client/models/v2_audit_export_receipt.py +95 -0
- openskin_client/models/v2_audit_export_receipt_response.py +93 -0
- openskin_client/models/v2_audit_export_result.py +132 -0
- openskin_client/models/v2_audit_page.py +114 -0
- openskin_client/models/v2_authenticator_finalize_request.py +110 -0
- openskin_client/models/v2_authenticator_import.py +108 -0
- openskin_client/models/v2_authenticator_recovery_complete_request.py +110 -0
- openskin_client/models/v2_authenticator_remove_request.py +102 -0
- openskin_client/models/v2_capability.py +122 -0
- openskin_client/models/v2_catalog_collection.py +125 -0
- openskin_client/models/v2_catalog_collection_detail.py +118 -0
- openskin_client/models/v2_catalog_container.py +136 -0
- openskin_client/models/v2_catalog_container_contents.py +118 -0
- openskin_client/models/v2_catalog_counts.py +111 -0
- openskin_client/models/v2_catalog_currency.py +122 -0
- openskin_client/models/v2_catalog_currency_set.py +133 -0
- openskin_client/models/v2_catalog_drop.py +108 -0
- openskin_client/models/v2_catalog_item.py +197 -0
- openskin_client/models/v2_catalog_page.py +132 -0
- openskin_client/models/v2_catalog_release.py +128 -0
- openskin_client/models/v2_catalog_release_export.py +154 -0
- openskin_client/models/v2_catalog_release_export_download.py +105 -0
- openskin_client/models/v2_catalog_release_key.py +113 -0
- openskin_client/models/v2_catalog_release_payload.py +154 -0
- openskin_client/models/v2_catalog_release_signature.py +113 -0
- openskin_client/models/v2_catalog_release_verification.py +111 -0
- openskin_client/models/v2_catalog_render_contract.py +153 -0
- openskin_client/models/v2_catalog_render_pattern.py +109 -0
- openskin_client/models/v2_catalog_render_wear.py +139 -0
- openskin_client/models/v2_catalog_snapshot.py +139 -0
- openskin_client/models/v2_command_receipt.py +109 -0
- openskin_client/models/v2_command_status.py +129 -0
- openskin_client/models/v2_compare_cs2_market_indices_response.py +106 -0
- openskin_client/models/v2_confirmation_batch_resolve_request.py +106 -0
- openskin_client/models/v2_confirmation_evidence.py +115 -0
- openskin_client/models/v2_confirmation_resolve_request.py +128 -0
- openskin_client/models/v2_create_audit_export_request.py +92 -0
- openskin_client/models/v2_create_trade_intent_request.py +148 -0
- openskin_client/models/v2_cross_market_price_aggregate.py +162 -0
- openskin_client/models/v2_current_price_batch.py +114 -0
- openskin_client/models/v2_current_price_batch_request.py +103 -0
- openskin_client/models/v2_current_prices.py +145 -0
- openskin_client/models/v2_decode_inspect_response.py +106 -0
- openskin_client/models/v2_encrypted_delivery_request.py +102 -0
- openskin_client/models/v2_execute_trade_intent_request.py +90 -0
- openskin_client/models/v2_get_aggregate_price_history_response.py +106 -0
- openskin_client/models/v2_get_authenticated_inventory_history_response.py +106 -0
- openskin_client/models/v2_get_authenticated_steam_inventory_response.py +106 -0
- openskin_client/models/v2_get_catalog_collection_response.py +106 -0
- openskin_client/models/v2_get_catalog_container_contents_response.py +106 -0
- openskin_client/models/v2_get_catalog_item_response.py +106 -0
- openskin_client/models/v2_get_catalog_release_export_response.py +106 -0
- openskin_client/models/v2_get_catalog_release_response.py +106 -0
- openskin_client/models/v2_get_catalog_snapshot_response.py +106 -0
- openskin_client/models/v2_get_cs2_market_index_coverage_response.py +106 -0
- openskin_client/models/v2_get_cs2_market_index_history_response.py +106 -0
- openskin_client/models/v2_get_cs2_market_index_response.py +106 -0
- openskin_client/models/v2_get_current_order_book_response.py +106 -0
- openskin_client/models/v2_get_current_prices_batch_response.py +106 -0
- openskin_client/models/v2_get_current_prices_response.py +106 -0
- openskin_client/models/v2_get_health_response.py +129 -0
- openskin_client/models/v2_get_image_render_response.py +106 -0
- openskin_client/models/v2_get_inventory_response.py +106 -0
- openskin_client/models/v2_get_latest_catalog_release_response.py +106 -0
- openskin_client/models/v2_get_market_summary_response.py +106 -0
- openskin_client/models/v2_get_order_book_history_response.py +106 -0
- openskin_client/models/v2_get_price_history_coverage_response.py +106 -0
- openskin_client/models/v2_get_price_history_response.py +106 -0
- openskin_client/models/v2_get_scene_response.py +106 -0
- openskin_client/models/v2_get_steam_account_health_response.py +106 -0
- openskin_client/models/v2_get_steam_friends_response.py +106 -0
- openskin_client/models/v2_get_steam_profile_batch_response.py +109 -0
- openskin_client/models/v2_get_steam_profile_response.py +106 -0
- openskin_client/models/v2_get_steam_trade_eligibility_response.py +106 -0
- openskin_client/models/v2_get_usage_response.py +106 -0
- openskin_client/models/v2_image_render_job.py +191 -0
- openskin_client/models/v2_image_render_output.py +113 -0
- openskin_client/models/v2_image_render_page.py +114 -0
- openskin_client/models/v2_image_render_receipt.py +108 -0
- openskin_client/models/v2_image_render_request.py +105 -0
- openskin_client/models/v2_image_render_result.py +122 -0
- openskin_client/models/v2_inspect_create_link_request.py +106 -0
- openskin_client/models/v2_inspect_create_link_response.py +102 -0
- openskin_client/models/v2_inspect_decode_request.py +102 -0
- openskin_client/models/v2_inspect_image_render_receipt.py +99 -0
- openskin_client/models/v2_inspect_image_render_request.py +101 -0
- openskin_client/models/v2_inspect_viewer_session_receipt.py +99 -0
- openskin_client/models/v2_inspect_viewer_session_request.py +95 -0
- openskin_client/models/v2_instance_publication.py +159 -0
- openskin_client/models/v2_instance_publication_capabilities.py +91 -0
- openskin_client/models/v2_instance_publication_response.py +93 -0
- openskin_client/models/v2_inventory_batch_request.py +103 -0
- openskin_client/models/v2_inventory_batch_response.py +109 -0
- openskin_client/models/v2_inventory_batch_result.py +122 -0
- openskin_client/models/v2_inventory_catalog_item.py +133 -0
- openskin_client/models/v2_inventory_history_entry.py +146 -0
- openskin_client/models/v2_inventory_history_page.py +114 -0
- openskin_client/models/v2_inventory_snapshot.py +146 -0
- openskin_client/models/v2_inventory_snapshot_assets_inner.py +118 -0
- openskin_client/models/v2_inventory_snapshot_cache.py +111 -0
- openskin_client/models/v2_inventory_snapshot_change.py +112 -0
- openskin_client/models/v2_item_catalog_query_receipt.py +108 -0
- openskin_client/models/v2_item_catalog_resolution.py +121 -0
- openskin_client/models/v2_item_instance.py +121 -0
- openskin_client/models/v2_item_render_resolution.py +114 -0
- openskin_client/models/v2_item_resolution.py +114 -0
- openskin_client/models/v2_list_audit_events_response.py +106 -0
- openskin_client/models/v2_list_capabilities_response.py +118 -0
- openskin_client/models/v2_list_catalog_collections_response.py +106 -0
- openskin_client/models/v2_list_catalog_collections_response_data.py +112 -0
- openskin_client/models/v2_list_catalog_containers_response.py +106 -0
- openskin_client/models/v2_list_catalog_containers_response_data.py +112 -0
- openskin_client/models/v2_list_catalog_currencies_response.py +106 -0
- openskin_client/models/v2_list_catalog_items_response.py +106 -0
- openskin_client/models/v2_list_catalog_release_keys_response.py +106 -0
- openskin_client/models/v2_list_catalog_release_keys_response_data.py +112 -0
- openskin_client/models/v2_list_image_renders_response.py +106 -0
- openskin_client/models/v2_list_market_segments_response.py +106 -0
- openskin_client/models/v2_list_market_segments_response_data.py +112 -0
- openskin_client/models/v2_list_markets_response.py +106 -0
- openskin_client/models/v2_list_markets_response_data.py +112 -0
- openskin_client/models/v2_list_scenes_response.py +109 -0
- openskin_client/models/v2_list_scopes_response.py +111 -0
- openskin_client/models/v2_list_steam_accounts_response.py +109 -0
- openskin_client/models/v2_list_trades_response.py +106 -0
- openskin_client/models/v2_list_webhook_deliveries_response.py +109 -0
- openskin_client/models/v2_list_webhooks_response.py +109 -0
- openskin_client/models/v2_market_index_candle.py +155 -0
- openskin_client/models/v2_market_index_comparison.py +162 -0
- openskin_client/models/v2_market_index_comparison_series.py +118 -0
- openskin_client/models/v2_market_index_coverage.py +162 -0
- openskin_client/models/v2_market_index_freshness.py +126 -0
- openskin_client/models/v2_market_index_history_page.py +134 -0
- openskin_client/models/v2_market_index_missing_range.py +108 -0
- openskin_client/models/v2_market_index_point.py +140 -0
- openskin_client/models/v2_market_index_run.py +201 -0
- openskin_client/models/v2_market_listing_inspect_request.py +99 -0
- openskin_client/models/v2_market_listing_inspect_response.py +106 -0
- openskin_client/models/v2_market_listing_inspect_response_data.py +115 -0
- openskin_client/models/v2_market_reference.py +132 -0
- openskin_client/models/v2_market_segment.py +114 -0
- openskin_client/models/v2_market_summary.py +216 -0
- openskin_client/models/v2_normalize_steam_id_response.py +106 -0
- openskin_client/models/v2_operation_failure.py +103 -0
- openskin_client/models/v2_operational_status.py +131 -0
- openskin_client/models/v2_operational_status_component.py +125 -0
- openskin_client/models/v2_operational_status_response.py +106 -0
- openskin_client/models/v2_order_book_depth_level.py +112 -0
- openskin_client/models/v2_order_book_history_page.py +143 -0
- openskin_client/models/v2_order_book_history_point.py +167 -0
- openskin_client/models/v2_order_book_snapshot.py +199 -0
- openskin_client/models/v2_order_book_spread.py +119 -0
- openskin_client/models/v2_platform_error_body.py +104 -0
- openskin_client/models/v2_platform_error_response.py +106 -0
- openskin_client/models/v2_preview_trade_intent_request.py +136 -0
- openskin_client/models/v2_price_freshness.py +114 -0
- openskin_client/models/v2_price_history_coverage_page.py +167 -0
- openskin_client/models/v2_price_history_coverage_series.py +143 -0
- openskin_client/models/v2_price_history_page.py +145 -0
- openskin_client/models/v2_price_history_point.py +153 -0
- openskin_client/models/v2_price_observation.py +221 -0
- openskin_client/models/v2_price_quote.py +128 -0
- openskin_client/models/v2_principal_response.py +117 -0
- openskin_client/models/v2_profile_batch_request.py +103 -0
- openskin_client/models/v2_profile_batch_result.py +114 -0
- openskin_client/models/v2_profile_batch_result_error.py +104 -0
- openskin_client/models/v2_profile_cache.py +111 -0
- openskin_client/models/v2_public_inspect_asset_record.py +146 -0
- openskin_client/models/v2_published_viewer_session_request.py +93 -0
- openskin_client/models/v2_render_item_request.py +118 -0
- openskin_client/models/v2_render_item_request_item.py +101 -0
- openskin_client/models/v2_render_item_request_state.py +92 -0
- openskin_client/models/v2_resolve_item_request.py +90 -0
- openskin_client/models/v2_resolve_item_response.py +93 -0
- openskin_client/models/v2_resolve_steam_identity_response.py +106 -0
- openskin_client/models/v2_scene.py +133 -0
- openskin_client/models/v2_scene_document.py +135 -0
- openskin_client/models/v2_scene_document_chrome.py +102 -0
- openskin_client/models/v2_scene_document_chrome_watermark.py +99 -0
- openskin_client/models/v2_scene_document_presentation.py +108 -0
- openskin_client/models/v2_scene_document_presentation_background.py +106 -0
- openskin_client/models/v2_scene_document_presentation_camera.py +96 -0
- openskin_client/models/v2_scene_mutation_receipt.py +108 -0
- openskin_client/models/v2_steam_account.py +135 -0
- openskin_client/models/v2_steam_account_control_receipt.py +114 -0
- openskin_client/models/v2_steam_account_control_request.py +105 -0
- openskin_client/models/v2_steam_account_create_request.py +102 -0
- openskin_client/models/v2_steam_account_health.py +160 -0
- openskin_client/models/v2_steam_account_health_authenticator.py +115 -0
- openskin_client/models/v2_steam_account_health_commands.py +112 -0
- openskin_client/models/v2_steam_account_health_inventory.py +115 -0
- openskin_client/models/v2_steam_account_health_reconciliation.py +112 -0
- openskin_client/models/v2_steam_account_health_session.py +116 -0
- openskin_client/models/v2_steam_account_health_trading.py +133 -0
- openskin_client/models/v2_steam_account_health_worker.py +111 -0
- openskin_client/models/v2_steam_ban_signals.py +113 -0
- openskin_client/models/v2_steam_command_page.py +114 -0
- openskin_client/models/v2_steam_command_page_response.py +106 -0
- openskin_client/models/v2_steam_friend.py +107 -0
- openskin_client/models/v2_steam_friend_list.py +125 -0
- openskin_client/models/v2_steam_id_formats.py +130 -0
- openskin_client/models/v2_steam_identity_resolution.py +159 -0
- openskin_client/models/v2_steam_login_request.py +105 -0
- openskin_client/models/v2_steam_profile.py +143 -0
- openskin_client/models/v2_steam_trade_budget_usage.py +101 -0
- openskin_client/models/v2_steam_trade_eligibility.py +132 -0
- openskin_client/models/v2_steam_trade_history_sync_request.py +89 -0
- openskin_client/models/v2_steam_trade_hold_request.py +112 -0
- openskin_client/models/v2_steam_trade_policy.py +132 -0
- openskin_client/models/v2_steam_web_api_key_request.py +97 -0
- openskin_client/models/v2_trade_asset.py +117 -0
- openskin_client/models/v2_trade_authorization_receipt.py +132 -0
- openskin_client/models/v2_trade_intent.py +172 -0
- openskin_client/models/v2_trade_intent_execution.py +118 -0
- openskin_client/models/v2_trade_intent_execution_response.py +106 -0
- openskin_client/models/v2_trade_intent_page.py +101 -0
- openskin_client/models/v2_trade_intent_page_response.py +93 -0
- openskin_client/models/v2_trade_intent_preview.py +156 -0
- openskin_client/models/v2_trade_intent_preview_response.py +93 -0
- openskin_client/models/v2_trade_intent_response.py +106 -0
- openskin_client/models/v2_trade_operation.py +160 -0
- openskin_client/models/v2_trade_page.py +114 -0
- openskin_client/models/v2_update_steam_account_controls_response.py +106 -0
- openskin_client/models/v2_update_steam_trade_policy.py +119 -0
- openskin_client/models/v2_usage_operation.py +116 -0
- openskin_client/models/v2_usage_summary.py +150 -0
- openskin_client/models/v2_usage_window.py +108 -0
- openskin_client/models/v2_viewer_scene_receipt.py +108 -0
- openskin_client/models/v2_viewer_session.py +129 -0
- openskin_client/models/v2_viewer_session_receipt.py +99 -0
- openskin_client/models/v2_viewer_session_request.py +99 -0
- openskin_client/models/v2_webhook_command_receipt.py +108 -0
- openskin_client/models/v2_webhook_delivery.py +134 -0
- openskin_client/models/v2_webhook_endpoint.py +131 -0
- openskin_client/models/v2_webhook_endpoint_request.py +114 -0
- openskin_client/models/v2_webhook_endpoint_update_request.py +123 -0
- openskin_client/models/v2_webhook_event_types_response.py +110 -0
- openskin_client/models/v2_webhook_retry_receipt.py +108 -0
- openskin_client/models/v2_webhook_secret_receipt.py +113 -0
- openskin_client/models/v2_webhook_test_receipt.py +107 -0
- openskin_client/openskin.py +14 -0
- openskin_client/py.typed +0 -0
- openskin_client/rest.py +202 -0
- openskin_client-0.1.0.dist-info/METADATA +64 -0
- openskin_client-0.1.0.dist-info/RECORD +271 -0
- openskin_client-0.1.0.dist-info/WHEEL +5 -0
- openskin_client-0.1.0.dist-info/licenses/LICENSE +21 -0
- openskin_client-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,559 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
OpenSkin Platform API
|
|
7
|
+
|
|
8
|
+
Catalog, pricing, inventory, inspect, media, Steam profile, trading, and webhook APIs for CS2 applications.
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 1.0.0
|
|
11
|
+
Contact: hello@openskin.dev
|
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
13
|
+
|
|
14
|
+
Do not edit the class manually.
|
|
15
|
+
""" # noqa: E501
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
__version__ = "0.1.0"
|
|
19
|
+
|
|
20
|
+
# Define package exports
|
|
21
|
+
__all__ = [
|
|
22
|
+
"PlatformV2Api",
|
|
23
|
+
"PlatformV2AutomationApi",
|
|
24
|
+
"PlatformV2MarketAnalyticsApi",
|
|
25
|
+
"PlatformV2MediaApi",
|
|
26
|
+
"PlatformV2PricingApi",
|
|
27
|
+
"PlatformV2ProfilesApi",
|
|
28
|
+
"PlatformV2WebhooksApi",
|
|
29
|
+
"ApiResponse",
|
|
30
|
+
"ApiClient",
|
|
31
|
+
"Configuration",
|
|
32
|
+
"OpenApiException",
|
|
33
|
+
"ApiTypeError",
|
|
34
|
+
"ApiValueError",
|
|
35
|
+
"ApiKeyError",
|
|
36
|
+
"ApiAttributeError",
|
|
37
|
+
"ApiException",
|
|
38
|
+
"V2AggregatePriceHistoryPage",
|
|
39
|
+
"V2AggregatePriceHistoryPoint",
|
|
40
|
+
"V2AggregatePriceHistoryQuote",
|
|
41
|
+
"V2AggregatePriceHistorySource",
|
|
42
|
+
"V2AuditEvent",
|
|
43
|
+
"V2AuditExportJob",
|
|
44
|
+
"V2AuditExportJobResponse",
|
|
45
|
+
"V2AuditExportPage",
|
|
46
|
+
"V2AuditExportPageResponse",
|
|
47
|
+
"V2AuditExportReceipt",
|
|
48
|
+
"V2AuditExportReceiptResponse",
|
|
49
|
+
"V2AuditExportResult",
|
|
50
|
+
"V2AuditPage",
|
|
51
|
+
"V2AuthenticatorFinalizeRequest",
|
|
52
|
+
"V2AuthenticatorImport",
|
|
53
|
+
"V2AuthenticatorRecoveryCompleteRequest",
|
|
54
|
+
"V2AuthenticatorRemoveRequest",
|
|
55
|
+
"V2Capability",
|
|
56
|
+
"V2CatalogCollection",
|
|
57
|
+
"V2CatalogCollectionDetail",
|
|
58
|
+
"V2CatalogContainer",
|
|
59
|
+
"V2CatalogContainerContents",
|
|
60
|
+
"V2CatalogCounts",
|
|
61
|
+
"V2CatalogCurrency",
|
|
62
|
+
"V2CatalogCurrencySet",
|
|
63
|
+
"V2CatalogDrop",
|
|
64
|
+
"V2CatalogItem",
|
|
65
|
+
"V2CatalogPage",
|
|
66
|
+
"V2CatalogRelease",
|
|
67
|
+
"V2CatalogReleaseExport",
|
|
68
|
+
"V2CatalogReleaseExportDownload",
|
|
69
|
+
"V2CatalogReleaseKey",
|
|
70
|
+
"V2CatalogReleasePayload",
|
|
71
|
+
"V2CatalogReleaseSignature",
|
|
72
|
+
"V2CatalogReleaseVerification",
|
|
73
|
+
"V2CatalogRenderContract",
|
|
74
|
+
"V2CatalogRenderPattern",
|
|
75
|
+
"V2CatalogRenderWear",
|
|
76
|
+
"V2CatalogSnapshot",
|
|
77
|
+
"V2CommandReceipt",
|
|
78
|
+
"V2CommandStatus",
|
|
79
|
+
"V2CompareCS2MarketIndicesResponse",
|
|
80
|
+
"V2ConfirmationBatchResolveRequest",
|
|
81
|
+
"V2ConfirmationEvidence",
|
|
82
|
+
"V2ConfirmationResolveRequest",
|
|
83
|
+
"V2CreateAuditExportRequest",
|
|
84
|
+
"V2CreateTradeIntentRequest",
|
|
85
|
+
"V2CrossMarketPriceAggregate",
|
|
86
|
+
"V2CurrentPriceBatch",
|
|
87
|
+
"V2CurrentPriceBatchRequest",
|
|
88
|
+
"V2CurrentPrices",
|
|
89
|
+
"V2DecodeInspectResponse",
|
|
90
|
+
"V2EncryptedDeliveryRequest",
|
|
91
|
+
"V2ExecuteTradeIntentRequest",
|
|
92
|
+
"V2GetAggregatePriceHistoryResponse",
|
|
93
|
+
"V2GetAuthenticatedInventoryHistoryResponse",
|
|
94
|
+
"V2GetAuthenticatedSteamInventoryResponse",
|
|
95
|
+
"V2GetCS2MarketIndexCoverageResponse",
|
|
96
|
+
"V2GetCS2MarketIndexHistoryResponse",
|
|
97
|
+
"V2GetCS2MarketIndexResponse",
|
|
98
|
+
"V2GetCatalogCollectionResponse",
|
|
99
|
+
"V2GetCatalogContainerContentsResponse",
|
|
100
|
+
"V2GetCatalogItemResponse",
|
|
101
|
+
"V2GetCatalogReleaseExportResponse",
|
|
102
|
+
"V2GetCatalogReleaseResponse",
|
|
103
|
+
"V2GetCatalogSnapshotResponse",
|
|
104
|
+
"V2GetCurrentOrderBookResponse",
|
|
105
|
+
"V2GetCurrentPricesBatchResponse",
|
|
106
|
+
"V2GetCurrentPricesResponse",
|
|
107
|
+
"V2GetHealthResponse",
|
|
108
|
+
"V2GetImageRenderResponse",
|
|
109
|
+
"V2GetInventoryResponse",
|
|
110
|
+
"V2GetLatestCatalogReleaseResponse",
|
|
111
|
+
"V2GetMarketSummaryResponse",
|
|
112
|
+
"V2GetOrderBookHistoryResponse",
|
|
113
|
+
"V2GetPriceHistoryCoverageResponse",
|
|
114
|
+
"V2GetPriceHistoryResponse",
|
|
115
|
+
"V2GetSceneResponse",
|
|
116
|
+
"V2GetSteamAccountHealthResponse",
|
|
117
|
+
"V2GetSteamFriendsResponse",
|
|
118
|
+
"V2GetSteamProfileBatchResponse",
|
|
119
|
+
"V2GetSteamProfileResponse",
|
|
120
|
+
"V2GetSteamTradeEligibilityResponse",
|
|
121
|
+
"V2GetUsageResponse",
|
|
122
|
+
"V2ImageRenderJob",
|
|
123
|
+
"V2ImageRenderOutput",
|
|
124
|
+
"V2ImageRenderPage",
|
|
125
|
+
"V2ImageRenderReceipt",
|
|
126
|
+
"V2ImageRenderRequest",
|
|
127
|
+
"V2ImageRenderResult",
|
|
128
|
+
"V2InspectCreateLinkRequest",
|
|
129
|
+
"V2InspectCreateLinkResponse",
|
|
130
|
+
"V2InspectDecodeRequest",
|
|
131
|
+
"V2InspectImageRenderReceipt",
|
|
132
|
+
"V2InspectImageRenderRequest",
|
|
133
|
+
"V2InspectViewerSessionReceipt",
|
|
134
|
+
"V2InspectViewerSessionRequest",
|
|
135
|
+
"V2InstancePublication",
|
|
136
|
+
"V2InstancePublicationCapabilities",
|
|
137
|
+
"V2InstancePublicationResponse",
|
|
138
|
+
"V2InventoryBatchRequest",
|
|
139
|
+
"V2InventoryBatchResponse",
|
|
140
|
+
"V2InventoryBatchResult",
|
|
141
|
+
"V2InventoryCatalogItem",
|
|
142
|
+
"V2InventoryHistoryEntry",
|
|
143
|
+
"V2InventoryHistoryPage",
|
|
144
|
+
"V2InventorySnapshot",
|
|
145
|
+
"V2InventorySnapshotAssetsInner",
|
|
146
|
+
"V2InventorySnapshotCache",
|
|
147
|
+
"V2InventorySnapshotChange",
|
|
148
|
+
"V2ItemCatalogQueryReceipt",
|
|
149
|
+
"V2ItemCatalogResolution",
|
|
150
|
+
"V2ItemInstance",
|
|
151
|
+
"V2ItemRenderResolution",
|
|
152
|
+
"V2ItemResolution",
|
|
153
|
+
"V2ListAuditEventsResponse",
|
|
154
|
+
"V2ListCapabilitiesResponse",
|
|
155
|
+
"V2ListCatalogCollectionsResponse",
|
|
156
|
+
"V2ListCatalogCollectionsResponseData",
|
|
157
|
+
"V2ListCatalogContainersResponse",
|
|
158
|
+
"V2ListCatalogContainersResponseData",
|
|
159
|
+
"V2ListCatalogCurrenciesResponse",
|
|
160
|
+
"V2ListCatalogItemsResponse",
|
|
161
|
+
"V2ListCatalogReleaseKeysResponse",
|
|
162
|
+
"V2ListCatalogReleaseKeysResponseData",
|
|
163
|
+
"V2ListImageRendersResponse",
|
|
164
|
+
"V2ListMarketSegmentsResponse",
|
|
165
|
+
"V2ListMarketSegmentsResponseData",
|
|
166
|
+
"V2ListMarketsResponse",
|
|
167
|
+
"V2ListMarketsResponseData",
|
|
168
|
+
"V2ListScenesResponse",
|
|
169
|
+
"V2ListScopesResponse",
|
|
170
|
+
"V2ListSteamAccountsResponse",
|
|
171
|
+
"V2ListTradesResponse",
|
|
172
|
+
"V2ListWebhookDeliveriesResponse",
|
|
173
|
+
"V2ListWebhooksResponse",
|
|
174
|
+
"V2MarketIndexCandle",
|
|
175
|
+
"V2MarketIndexComparison",
|
|
176
|
+
"V2MarketIndexComparisonSeries",
|
|
177
|
+
"V2MarketIndexCoverage",
|
|
178
|
+
"V2MarketIndexFreshness",
|
|
179
|
+
"V2MarketIndexHistoryPage",
|
|
180
|
+
"V2MarketIndexMissingRange",
|
|
181
|
+
"V2MarketIndexPoint",
|
|
182
|
+
"V2MarketIndexRun",
|
|
183
|
+
"V2MarketListingInspectRequest",
|
|
184
|
+
"V2MarketListingInspectResponse",
|
|
185
|
+
"V2MarketListingInspectResponseData",
|
|
186
|
+
"V2MarketReference",
|
|
187
|
+
"V2MarketSegment",
|
|
188
|
+
"V2MarketSummary",
|
|
189
|
+
"V2NormalizeSteamIDResponse",
|
|
190
|
+
"V2OperationFailure",
|
|
191
|
+
"V2OperationalStatus",
|
|
192
|
+
"V2OperationalStatusComponent",
|
|
193
|
+
"V2OperationalStatusResponse",
|
|
194
|
+
"V2OrderBookDepthLevel",
|
|
195
|
+
"V2OrderBookHistoryPage",
|
|
196
|
+
"V2OrderBookHistoryPoint",
|
|
197
|
+
"V2OrderBookSnapshot",
|
|
198
|
+
"V2OrderBookSpread",
|
|
199
|
+
"V2PlatformErrorBody",
|
|
200
|
+
"V2PlatformErrorResponse",
|
|
201
|
+
"V2PreviewTradeIntentRequest",
|
|
202
|
+
"V2PriceFreshness",
|
|
203
|
+
"V2PriceHistoryCoveragePage",
|
|
204
|
+
"V2PriceHistoryCoverageSeries",
|
|
205
|
+
"V2PriceHistoryPage",
|
|
206
|
+
"V2PriceHistoryPoint",
|
|
207
|
+
"V2PriceObservation",
|
|
208
|
+
"V2PriceQuote",
|
|
209
|
+
"V2PrincipalResponse",
|
|
210
|
+
"V2ProfileBatchRequest",
|
|
211
|
+
"V2ProfileBatchResult",
|
|
212
|
+
"V2ProfileBatchResultError",
|
|
213
|
+
"V2ProfileCache",
|
|
214
|
+
"V2PublicInspectAssetRecord",
|
|
215
|
+
"V2PublishedViewerSessionRequest",
|
|
216
|
+
"V2RenderItemRequest",
|
|
217
|
+
"V2RenderItemRequestItem",
|
|
218
|
+
"V2RenderItemRequestState",
|
|
219
|
+
"V2ResolveItemRequest",
|
|
220
|
+
"V2ResolveItemResponse",
|
|
221
|
+
"V2ResolveSteamIdentityResponse",
|
|
222
|
+
"V2Scene",
|
|
223
|
+
"V2SceneDocument",
|
|
224
|
+
"V2SceneDocumentChrome",
|
|
225
|
+
"V2SceneDocumentChromeWatermark",
|
|
226
|
+
"V2SceneDocumentPresentation",
|
|
227
|
+
"V2SceneDocumentPresentationBackground",
|
|
228
|
+
"V2SceneDocumentPresentationCamera",
|
|
229
|
+
"V2SceneMutationReceipt",
|
|
230
|
+
"V2SteamAccount",
|
|
231
|
+
"V2SteamAccountControlReceipt",
|
|
232
|
+
"V2SteamAccountControlRequest",
|
|
233
|
+
"V2SteamAccountCreateRequest",
|
|
234
|
+
"V2SteamAccountHealth",
|
|
235
|
+
"V2SteamAccountHealthAuthenticator",
|
|
236
|
+
"V2SteamAccountHealthCommands",
|
|
237
|
+
"V2SteamAccountHealthInventory",
|
|
238
|
+
"V2SteamAccountHealthReconciliation",
|
|
239
|
+
"V2SteamAccountHealthSession",
|
|
240
|
+
"V2SteamAccountHealthTrading",
|
|
241
|
+
"V2SteamAccountHealthWorker",
|
|
242
|
+
"V2SteamBanSignals",
|
|
243
|
+
"V2SteamCommandPage",
|
|
244
|
+
"V2SteamCommandPageResponse",
|
|
245
|
+
"V2SteamFriend",
|
|
246
|
+
"V2SteamFriendList",
|
|
247
|
+
"V2SteamIDFormats",
|
|
248
|
+
"V2SteamIdentityResolution",
|
|
249
|
+
"V2SteamLoginRequest",
|
|
250
|
+
"V2SteamProfile",
|
|
251
|
+
"V2SteamTradeBudgetUsage",
|
|
252
|
+
"V2SteamTradeEligibility",
|
|
253
|
+
"V2SteamTradeHistorySyncRequest",
|
|
254
|
+
"V2SteamTradeHoldRequest",
|
|
255
|
+
"V2SteamTradePolicy",
|
|
256
|
+
"V2SteamWebAPIKeyRequest",
|
|
257
|
+
"V2TradeAsset",
|
|
258
|
+
"V2TradeAuthorizationReceipt",
|
|
259
|
+
"V2TradeIntent",
|
|
260
|
+
"V2TradeIntentExecution",
|
|
261
|
+
"V2TradeIntentExecutionResponse",
|
|
262
|
+
"V2TradeIntentPage",
|
|
263
|
+
"V2TradeIntentPageResponse",
|
|
264
|
+
"V2TradeIntentPreview",
|
|
265
|
+
"V2TradeIntentPreviewResponse",
|
|
266
|
+
"V2TradeIntentResponse",
|
|
267
|
+
"V2TradeOperation",
|
|
268
|
+
"V2TradePage",
|
|
269
|
+
"V2UpdateSteamAccountControlsResponse",
|
|
270
|
+
"V2UpdateSteamTradePolicy",
|
|
271
|
+
"V2UsageOperation",
|
|
272
|
+
"V2UsageSummary",
|
|
273
|
+
"V2UsageWindow",
|
|
274
|
+
"V2ViewerSceneReceipt",
|
|
275
|
+
"V2ViewerSession",
|
|
276
|
+
"V2ViewerSessionReceipt",
|
|
277
|
+
"V2ViewerSessionRequest",
|
|
278
|
+
"V2WebhookCommandReceipt",
|
|
279
|
+
"V2WebhookDelivery",
|
|
280
|
+
"V2WebhookEndpoint",
|
|
281
|
+
"V2WebhookEndpointRequest",
|
|
282
|
+
"V2WebhookEndpointUpdateRequest",
|
|
283
|
+
"V2WebhookEventTypesResponse",
|
|
284
|
+
"V2WebhookRetryReceipt",
|
|
285
|
+
"V2WebhookSecretReceipt",
|
|
286
|
+
"V2WebhookTestReceipt",
|
|
287
|
+
]
|
|
288
|
+
|
|
289
|
+
# import apis into sdk package
|
|
290
|
+
from openskin_client.api.platform_v2_api import PlatformV2Api as PlatformV2Api
|
|
291
|
+
from openskin_client.api.platform_v2_automation_api import PlatformV2AutomationApi as PlatformV2AutomationApi
|
|
292
|
+
from openskin_client.api.platform_v2_market_analytics_api import PlatformV2MarketAnalyticsApi as PlatformV2MarketAnalyticsApi
|
|
293
|
+
from openskin_client.api.platform_v2_media_api import PlatformV2MediaApi as PlatformV2MediaApi
|
|
294
|
+
from openskin_client.api.platform_v2_pricing_api import PlatformV2PricingApi as PlatformV2PricingApi
|
|
295
|
+
from openskin_client.api.platform_v2_profiles_api import PlatformV2ProfilesApi as PlatformV2ProfilesApi
|
|
296
|
+
from openskin_client.api.platform_v2_webhooks_api import PlatformV2WebhooksApi as PlatformV2WebhooksApi
|
|
297
|
+
|
|
298
|
+
# import ApiClient
|
|
299
|
+
from openskin_client.api_response import ApiResponse as ApiResponse
|
|
300
|
+
from openskin_client.api_client import ApiClient as ApiClient
|
|
301
|
+
from openskin_client.configuration import Configuration as Configuration
|
|
302
|
+
from openskin_client.exceptions import OpenApiException as OpenApiException
|
|
303
|
+
from openskin_client.exceptions import ApiTypeError as ApiTypeError
|
|
304
|
+
from openskin_client.exceptions import ApiValueError as ApiValueError
|
|
305
|
+
from openskin_client.exceptions import ApiKeyError as ApiKeyError
|
|
306
|
+
from openskin_client.exceptions import ApiAttributeError as ApiAttributeError
|
|
307
|
+
from openskin_client.exceptions import ApiException as ApiException
|
|
308
|
+
|
|
309
|
+
# import models into sdk package
|
|
310
|
+
from openskin_client.models.v2_aggregate_price_history_page import V2AggregatePriceHistoryPage as V2AggregatePriceHistoryPage
|
|
311
|
+
from openskin_client.models.v2_aggregate_price_history_point import V2AggregatePriceHistoryPoint as V2AggregatePriceHistoryPoint
|
|
312
|
+
from openskin_client.models.v2_aggregate_price_history_quote import V2AggregatePriceHistoryQuote as V2AggregatePriceHistoryQuote
|
|
313
|
+
from openskin_client.models.v2_aggregate_price_history_source import V2AggregatePriceHistorySource as V2AggregatePriceHistorySource
|
|
314
|
+
from openskin_client.models.v2_audit_event import V2AuditEvent as V2AuditEvent
|
|
315
|
+
from openskin_client.models.v2_audit_export_job import V2AuditExportJob as V2AuditExportJob
|
|
316
|
+
from openskin_client.models.v2_audit_export_job_response import V2AuditExportJobResponse as V2AuditExportJobResponse
|
|
317
|
+
from openskin_client.models.v2_audit_export_page import V2AuditExportPage as V2AuditExportPage
|
|
318
|
+
from openskin_client.models.v2_audit_export_page_response import V2AuditExportPageResponse as V2AuditExportPageResponse
|
|
319
|
+
from openskin_client.models.v2_audit_export_receipt import V2AuditExportReceipt as V2AuditExportReceipt
|
|
320
|
+
from openskin_client.models.v2_audit_export_receipt_response import V2AuditExportReceiptResponse as V2AuditExportReceiptResponse
|
|
321
|
+
from openskin_client.models.v2_audit_export_result import V2AuditExportResult as V2AuditExportResult
|
|
322
|
+
from openskin_client.models.v2_audit_page import V2AuditPage as V2AuditPage
|
|
323
|
+
from openskin_client.models.v2_authenticator_finalize_request import V2AuthenticatorFinalizeRequest as V2AuthenticatorFinalizeRequest
|
|
324
|
+
from openskin_client.models.v2_authenticator_import import V2AuthenticatorImport as V2AuthenticatorImport
|
|
325
|
+
from openskin_client.models.v2_authenticator_recovery_complete_request import V2AuthenticatorRecoveryCompleteRequest as V2AuthenticatorRecoveryCompleteRequest
|
|
326
|
+
from openskin_client.models.v2_authenticator_remove_request import V2AuthenticatorRemoveRequest as V2AuthenticatorRemoveRequest
|
|
327
|
+
from openskin_client.models.v2_capability import V2Capability as V2Capability
|
|
328
|
+
from openskin_client.models.v2_catalog_collection import V2CatalogCollection as V2CatalogCollection
|
|
329
|
+
from openskin_client.models.v2_catalog_collection_detail import V2CatalogCollectionDetail as V2CatalogCollectionDetail
|
|
330
|
+
from openskin_client.models.v2_catalog_container import V2CatalogContainer as V2CatalogContainer
|
|
331
|
+
from openskin_client.models.v2_catalog_container_contents import V2CatalogContainerContents as V2CatalogContainerContents
|
|
332
|
+
from openskin_client.models.v2_catalog_counts import V2CatalogCounts as V2CatalogCounts
|
|
333
|
+
from openskin_client.models.v2_catalog_currency import V2CatalogCurrency as V2CatalogCurrency
|
|
334
|
+
from openskin_client.models.v2_catalog_currency_set import V2CatalogCurrencySet as V2CatalogCurrencySet
|
|
335
|
+
from openskin_client.models.v2_catalog_drop import V2CatalogDrop as V2CatalogDrop
|
|
336
|
+
from openskin_client.models.v2_catalog_item import V2CatalogItem as V2CatalogItem
|
|
337
|
+
from openskin_client.models.v2_catalog_page import V2CatalogPage as V2CatalogPage
|
|
338
|
+
from openskin_client.models.v2_catalog_release import V2CatalogRelease as V2CatalogRelease
|
|
339
|
+
from openskin_client.models.v2_catalog_release_export import V2CatalogReleaseExport as V2CatalogReleaseExport
|
|
340
|
+
from openskin_client.models.v2_catalog_release_export_download import V2CatalogReleaseExportDownload as V2CatalogReleaseExportDownload
|
|
341
|
+
from openskin_client.models.v2_catalog_release_key import V2CatalogReleaseKey as V2CatalogReleaseKey
|
|
342
|
+
from openskin_client.models.v2_catalog_release_payload import V2CatalogReleasePayload as V2CatalogReleasePayload
|
|
343
|
+
from openskin_client.models.v2_catalog_release_signature import V2CatalogReleaseSignature as V2CatalogReleaseSignature
|
|
344
|
+
from openskin_client.models.v2_catalog_release_verification import V2CatalogReleaseVerification as V2CatalogReleaseVerification
|
|
345
|
+
from openskin_client.models.v2_catalog_render_contract import V2CatalogRenderContract as V2CatalogRenderContract
|
|
346
|
+
from openskin_client.models.v2_catalog_render_pattern import V2CatalogRenderPattern as V2CatalogRenderPattern
|
|
347
|
+
from openskin_client.models.v2_catalog_render_wear import V2CatalogRenderWear as V2CatalogRenderWear
|
|
348
|
+
from openskin_client.models.v2_catalog_snapshot import V2CatalogSnapshot as V2CatalogSnapshot
|
|
349
|
+
from openskin_client.models.v2_command_receipt import V2CommandReceipt as V2CommandReceipt
|
|
350
|
+
from openskin_client.models.v2_command_status import V2CommandStatus as V2CommandStatus
|
|
351
|
+
from openskin_client.models.v2_compare_cs2_market_indices_response import V2CompareCS2MarketIndicesResponse as V2CompareCS2MarketIndicesResponse
|
|
352
|
+
from openskin_client.models.v2_confirmation_batch_resolve_request import V2ConfirmationBatchResolveRequest as V2ConfirmationBatchResolveRequest
|
|
353
|
+
from openskin_client.models.v2_confirmation_evidence import V2ConfirmationEvidence as V2ConfirmationEvidence
|
|
354
|
+
from openskin_client.models.v2_confirmation_resolve_request import V2ConfirmationResolveRequest as V2ConfirmationResolveRequest
|
|
355
|
+
from openskin_client.models.v2_create_audit_export_request import V2CreateAuditExportRequest as V2CreateAuditExportRequest
|
|
356
|
+
from openskin_client.models.v2_create_trade_intent_request import V2CreateTradeIntentRequest as V2CreateTradeIntentRequest
|
|
357
|
+
from openskin_client.models.v2_cross_market_price_aggregate import V2CrossMarketPriceAggregate as V2CrossMarketPriceAggregate
|
|
358
|
+
from openskin_client.models.v2_current_price_batch import V2CurrentPriceBatch as V2CurrentPriceBatch
|
|
359
|
+
from openskin_client.models.v2_current_price_batch_request import V2CurrentPriceBatchRequest as V2CurrentPriceBatchRequest
|
|
360
|
+
from openskin_client.models.v2_current_prices import V2CurrentPrices as V2CurrentPrices
|
|
361
|
+
from openskin_client.models.v2_decode_inspect_response import V2DecodeInspectResponse as V2DecodeInspectResponse
|
|
362
|
+
from openskin_client.models.v2_encrypted_delivery_request import V2EncryptedDeliveryRequest as V2EncryptedDeliveryRequest
|
|
363
|
+
from openskin_client.models.v2_execute_trade_intent_request import V2ExecuteTradeIntentRequest as V2ExecuteTradeIntentRequest
|
|
364
|
+
from openskin_client.models.v2_get_aggregate_price_history_response import V2GetAggregatePriceHistoryResponse as V2GetAggregatePriceHistoryResponse
|
|
365
|
+
from openskin_client.models.v2_get_authenticated_inventory_history_response import V2GetAuthenticatedInventoryHistoryResponse as V2GetAuthenticatedInventoryHistoryResponse
|
|
366
|
+
from openskin_client.models.v2_get_authenticated_steam_inventory_response import V2GetAuthenticatedSteamInventoryResponse as V2GetAuthenticatedSteamInventoryResponse
|
|
367
|
+
from openskin_client.models.v2_get_cs2_market_index_coverage_response import V2GetCS2MarketIndexCoverageResponse as V2GetCS2MarketIndexCoverageResponse
|
|
368
|
+
from openskin_client.models.v2_get_cs2_market_index_history_response import V2GetCS2MarketIndexHistoryResponse as V2GetCS2MarketIndexHistoryResponse
|
|
369
|
+
from openskin_client.models.v2_get_cs2_market_index_response import V2GetCS2MarketIndexResponse as V2GetCS2MarketIndexResponse
|
|
370
|
+
from openskin_client.models.v2_get_catalog_collection_response import V2GetCatalogCollectionResponse as V2GetCatalogCollectionResponse
|
|
371
|
+
from openskin_client.models.v2_get_catalog_container_contents_response import V2GetCatalogContainerContentsResponse as V2GetCatalogContainerContentsResponse
|
|
372
|
+
from openskin_client.models.v2_get_catalog_item_response import V2GetCatalogItemResponse as V2GetCatalogItemResponse
|
|
373
|
+
from openskin_client.models.v2_get_catalog_release_export_response import V2GetCatalogReleaseExportResponse as V2GetCatalogReleaseExportResponse
|
|
374
|
+
from openskin_client.models.v2_get_catalog_release_response import V2GetCatalogReleaseResponse as V2GetCatalogReleaseResponse
|
|
375
|
+
from openskin_client.models.v2_get_catalog_snapshot_response import V2GetCatalogSnapshotResponse as V2GetCatalogSnapshotResponse
|
|
376
|
+
from openskin_client.models.v2_get_current_order_book_response import V2GetCurrentOrderBookResponse as V2GetCurrentOrderBookResponse
|
|
377
|
+
from openskin_client.models.v2_get_current_prices_batch_response import V2GetCurrentPricesBatchResponse as V2GetCurrentPricesBatchResponse
|
|
378
|
+
from openskin_client.models.v2_get_current_prices_response import V2GetCurrentPricesResponse as V2GetCurrentPricesResponse
|
|
379
|
+
from openskin_client.models.v2_get_health_response import V2GetHealthResponse as V2GetHealthResponse
|
|
380
|
+
from openskin_client.models.v2_get_image_render_response import V2GetImageRenderResponse as V2GetImageRenderResponse
|
|
381
|
+
from openskin_client.models.v2_get_inventory_response import V2GetInventoryResponse as V2GetInventoryResponse
|
|
382
|
+
from openskin_client.models.v2_get_latest_catalog_release_response import V2GetLatestCatalogReleaseResponse as V2GetLatestCatalogReleaseResponse
|
|
383
|
+
from openskin_client.models.v2_get_market_summary_response import V2GetMarketSummaryResponse as V2GetMarketSummaryResponse
|
|
384
|
+
from openskin_client.models.v2_get_order_book_history_response import V2GetOrderBookHistoryResponse as V2GetOrderBookHistoryResponse
|
|
385
|
+
from openskin_client.models.v2_get_price_history_coverage_response import V2GetPriceHistoryCoverageResponse as V2GetPriceHistoryCoverageResponse
|
|
386
|
+
from openskin_client.models.v2_get_price_history_response import V2GetPriceHistoryResponse as V2GetPriceHistoryResponse
|
|
387
|
+
from openskin_client.models.v2_get_scene_response import V2GetSceneResponse as V2GetSceneResponse
|
|
388
|
+
from openskin_client.models.v2_get_steam_account_health_response import V2GetSteamAccountHealthResponse as V2GetSteamAccountHealthResponse
|
|
389
|
+
from openskin_client.models.v2_get_steam_friends_response import V2GetSteamFriendsResponse as V2GetSteamFriendsResponse
|
|
390
|
+
from openskin_client.models.v2_get_steam_profile_batch_response import V2GetSteamProfileBatchResponse as V2GetSteamProfileBatchResponse
|
|
391
|
+
from openskin_client.models.v2_get_steam_profile_response import V2GetSteamProfileResponse as V2GetSteamProfileResponse
|
|
392
|
+
from openskin_client.models.v2_get_steam_trade_eligibility_response import V2GetSteamTradeEligibilityResponse as V2GetSteamTradeEligibilityResponse
|
|
393
|
+
from openskin_client.models.v2_get_usage_response import V2GetUsageResponse as V2GetUsageResponse
|
|
394
|
+
from openskin_client.models.v2_image_render_job import V2ImageRenderJob as V2ImageRenderJob
|
|
395
|
+
from openskin_client.models.v2_image_render_output import V2ImageRenderOutput as V2ImageRenderOutput
|
|
396
|
+
from openskin_client.models.v2_image_render_page import V2ImageRenderPage as V2ImageRenderPage
|
|
397
|
+
from openskin_client.models.v2_image_render_receipt import V2ImageRenderReceipt as V2ImageRenderReceipt
|
|
398
|
+
from openskin_client.models.v2_image_render_request import V2ImageRenderRequest as V2ImageRenderRequest
|
|
399
|
+
from openskin_client.models.v2_image_render_result import V2ImageRenderResult as V2ImageRenderResult
|
|
400
|
+
from openskin_client.models.v2_inspect_create_link_request import V2InspectCreateLinkRequest as V2InspectCreateLinkRequest
|
|
401
|
+
from openskin_client.models.v2_inspect_create_link_response import V2InspectCreateLinkResponse as V2InspectCreateLinkResponse
|
|
402
|
+
from openskin_client.models.v2_inspect_decode_request import V2InspectDecodeRequest as V2InspectDecodeRequest
|
|
403
|
+
from openskin_client.models.v2_inspect_image_render_receipt import V2InspectImageRenderReceipt as V2InspectImageRenderReceipt
|
|
404
|
+
from openskin_client.models.v2_inspect_image_render_request import V2InspectImageRenderRequest as V2InspectImageRenderRequest
|
|
405
|
+
from openskin_client.models.v2_inspect_viewer_session_receipt import V2InspectViewerSessionReceipt as V2InspectViewerSessionReceipt
|
|
406
|
+
from openskin_client.models.v2_inspect_viewer_session_request import V2InspectViewerSessionRequest as V2InspectViewerSessionRequest
|
|
407
|
+
from openskin_client.models.v2_instance_publication import V2InstancePublication as V2InstancePublication
|
|
408
|
+
from openskin_client.models.v2_instance_publication_capabilities import V2InstancePublicationCapabilities as V2InstancePublicationCapabilities
|
|
409
|
+
from openskin_client.models.v2_instance_publication_response import V2InstancePublicationResponse as V2InstancePublicationResponse
|
|
410
|
+
from openskin_client.models.v2_inventory_batch_request import V2InventoryBatchRequest as V2InventoryBatchRequest
|
|
411
|
+
from openskin_client.models.v2_inventory_batch_response import V2InventoryBatchResponse as V2InventoryBatchResponse
|
|
412
|
+
from openskin_client.models.v2_inventory_batch_result import V2InventoryBatchResult as V2InventoryBatchResult
|
|
413
|
+
from openskin_client.models.v2_inventory_catalog_item import V2InventoryCatalogItem as V2InventoryCatalogItem
|
|
414
|
+
from openskin_client.models.v2_inventory_history_entry import V2InventoryHistoryEntry as V2InventoryHistoryEntry
|
|
415
|
+
from openskin_client.models.v2_inventory_history_page import V2InventoryHistoryPage as V2InventoryHistoryPage
|
|
416
|
+
from openskin_client.models.v2_inventory_snapshot import V2InventorySnapshot as V2InventorySnapshot
|
|
417
|
+
from openskin_client.models.v2_inventory_snapshot_assets_inner import V2InventorySnapshotAssetsInner as V2InventorySnapshotAssetsInner
|
|
418
|
+
from openskin_client.models.v2_inventory_snapshot_cache import V2InventorySnapshotCache as V2InventorySnapshotCache
|
|
419
|
+
from openskin_client.models.v2_inventory_snapshot_change import V2InventorySnapshotChange as V2InventorySnapshotChange
|
|
420
|
+
from openskin_client.models.v2_item_catalog_query_receipt import V2ItemCatalogQueryReceipt as V2ItemCatalogQueryReceipt
|
|
421
|
+
from openskin_client.models.v2_item_catalog_resolution import V2ItemCatalogResolution as V2ItemCatalogResolution
|
|
422
|
+
from openskin_client.models.v2_item_instance import V2ItemInstance as V2ItemInstance
|
|
423
|
+
from openskin_client.models.v2_item_render_resolution import V2ItemRenderResolution as V2ItemRenderResolution
|
|
424
|
+
from openskin_client.models.v2_item_resolution import V2ItemResolution as V2ItemResolution
|
|
425
|
+
from openskin_client.models.v2_list_audit_events_response import V2ListAuditEventsResponse as V2ListAuditEventsResponse
|
|
426
|
+
from openskin_client.models.v2_list_capabilities_response import V2ListCapabilitiesResponse as V2ListCapabilitiesResponse
|
|
427
|
+
from openskin_client.models.v2_list_catalog_collections_response import V2ListCatalogCollectionsResponse as V2ListCatalogCollectionsResponse
|
|
428
|
+
from openskin_client.models.v2_list_catalog_collections_response_data import V2ListCatalogCollectionsResponseData as V2ListCatalogCollectionsResponseData
|
|
429
|
+
from openskin_client.models.v2_list_catalog_containers_response import V2ListCatalogContainersResponse as V2ListCatalogContainersResponse
|
|
430
|
+
from openskin_client.models.v2_list_catalog_containers_response_data import V2ListCatalogContainersResponseData as V2ListCatalogContainersResponseData
|
|
431
|
+
from openskin_client.models.v2_list_catalog_currencies_response import V2ListCatalogCurrenciesResponse as V2ListCatalogCurrenciesResponse
|
|
432
|
+
from openskin_client.models.v2_list_catalog_items_response import V2ListCatalogItemsResponse as V2ListCatalogItemsResponse
|
|
433
|
+
from openskin_client.models.v2_list_catalog_release_keys_response import V2ListCatalogReleaseKeysResponse as V2ListCatalogReleaseKeysResponse
|
|
434
|
+
from openskin_client.models.v2_list_catalog_release_keys_response_data import V2ListCatalogReleaseKeysResponseData as V2ListCatalogReleaseKeysResponseData
|
|
435
|
+
from openskin_client.models.v2_list_image_renders_response import V2ListImageRendersResponse as V2ListImageRendersResponse
|
|
436
|
+
from openskin_client.models.v2_list_market_segments_response import V2ListMarketSegmentsResponse as V2ListMarketSegmentsResponse
|
|
437
|
+
from openskin_client.models.v2_list_market_segments_response_data import V2ListMarketSegmentsResponseData as V2ListMarketSegmentsResponseData
|
|
438
|
+
from openskin_client.models.v2_list_markets_response import V2ListMarketsResponse as V2ListMarketsResponse
|
|
439
|
+
from openskin_client.models.v2_list_markets_response_data import V2ListMarketsResponseData as V2ListMarketsResponseData
|
|
440
|
+
from openskin_client.models.v2_list_scenes_response import V2ListScenesResponse as V2ListScenesResponse
|
|
441
|
+
from openskin_client.models.v2_list_scopes_response import V2ListScopesResponse as V2ListScopesResponse
|
|
442
|
+
from openskin_client.models.v2_list_steam_accounts_response import V2ListSteamAccountsResponse as V2ListSteamAccountsResponse
|
|
443
|
+
from openskin_client.models.v2_list_trades_response import V2ListTradesResponse as V2ListTradesResponse
|
|
444
|
+
from openskin_client.models.v2_list_webhook_deliveries_response import V2ListWebhookDeliveriesResponse as V2ListWebhookDeliveriesResponse
|
|
445
|
+
from openskin_client.models.v2_list_webhooks_response import V2ListWebhooksResponse as V2ListWebhooksResponse
|
|
446
|
+
from openskin_client.models.v2_market_index_candle import V2MarketIndexCandle as V2MarketIndexCandle
|
|
447
|
+
from openskin_client.models.v2_market_index_comparison import V2MarketIndexComparison as V2MarketIndexComparison
|
|
448
|
+
from openskin_client.models.v2_market_index_comparison_series import V2MarketIndexComparisonSeries as V2MarketIndexComparisonSeries
|
|
449
|
+
from openskin_client.models.v2_market_index_coverage import V2MarketIndexCoverage as V2MarketIndexCoverage
|
|
450
|
+
from openskin_client.models.v2_market_index_freshness import V2MarketIndexFreshness as V2MarketIndexFreshness
|
|
451
|
+
from openskin_client.models.v2_market_index_history_page import V2MarketIndexHistoryPage as V2MarketIndexHistoryPage
|
|
452
|
+
from openskin_client.models.v2_market_index_missing_range import V2MarketIndexMissingRange as V2MarketIndexMissingRange
|
|
453
|
+
from openskin_client.models.v2_market_index_point import V2MarketIndexPoint as V2MarketIndexPoint
|
|
454
|
+
from openskin_client.models.v2_market_index_run import V2MarketIndexRun as V2MarketIndexRun
|
|
455
|
+
from openskin_client.models.v2_market_listing_inspect_request import V2MarketListingInspectRequest as V2MarketListingInspectRequest
|
|
456
|
+
from openskin_client.models.v2_market_listing_inspect_response import V2MarketListingInspectResponse as V2MarketListingInspectResponse
|
|
457
|
+
from openskin_client.models.v2_market_listing_inspect_response_data import V2MarketListingInspectResponseData as V2MarketListingInspectResponseData
|
|
458
|
+
from openskin_client.models.v2_market_reference import V2MarketReference as V2MarketReference
|
|
459
|
+
from openskin_client.models.v2_market_segment import V2MarketSegment as V2MarketSegment
|
|
460
|
+
from openskin_client.models.v2_market_summary import V2MarketSummary as V2MarketSummary
|
|
461
|
+
from openskin_client.models.v2_normalize_steam_id_response import V2NormalizeSteamIDResponse as V2NormalizeSteamIDResponse
|
|
462
|
+
from openskin_client.models.v2_operation_failure import V2OperationFailure as V2OperationFailure
|
|
463
|
+
from openskin_client.models.v2_operational_status import V2OperationalStatus as V2OperationalStatus
|
|
464
|
+
from openskin_client.models.v2_operational_status_component import V2OperationalStatusComponent as V2OperationalStatusComponent
|
|
465
|
+
from openskin_client.models.v2_operational_status_response import V2OperationalStatusResponse as V2OperationalStatusResponse
|
|
466
|
+
from openskin_client.models.v2_order_book_depth_level import V2OrderBookDepthLevel as V2OrderBookDepthLevel
|
|
467
|
+
from openskin_client.models.v2_order_book_history_page import V2OrderBookHistoryPage as V2OrderBookHistoryPage
|
|
468
|
+
from openskin_client.models.v2_order_book_history_point import V2OrderBookHistoryPoint as V2OrderBookHistoryPoint
|
|
469
|
+
from openskin_client.models.v2_order_book_snapshot import V2OrderBookSnapshot as V2OrderBookSnapshot
|
|
470
|
+
from openskin_client.models.v2_order_book_spread import V2OrderBookSpread as V2OrderBookSpread
|
|
471
|
+
from openskin_client.models.v2_platform_error_body import V2PlatformErrorBody as V2PlatformErrorBody
|
|
472
|
+
from openskin_client.models.v2_platform_error_response import V2PlatformErrorResponse as V2PlatformErrorResponse
|
|
473
|
+
from openskin_client.models.v2_preview_trade_intent_request import V2PreviewTradeIntentRequest as V2PreviewTradeIntentRequest
|
|
474
|
+
from openskin_client.models.v2_price_freshness import V2PriceFreshness as V2PriceFreshness
|
|
475
|
+
from openskin_client.models.v2_price_history_coverage_page import V2PriceHistoryCoveragePage as V2PriceHistoryCoveragePage
|
|
476
|
+
from openskin_client.models.v2_price_history_coverage_series import V2PriceHistoryCoverageSeries as V2PriceHistoryCoverageSeries
|
|
477
|
+
from openskin_client.models.v2_price_history_page import V2PriceHistoryPage as V2PriceHistoryPage
|
|
478
|
+
from openskin_client.models.v2_price_history_point import V2PriceHistoryPoint as V2PriceHistoryPoint
|
|
479
|
+
from openskin_client.models.v2_price_observation import V2PriceObservation as V2PriceObservation
|
|
480
|
+
from openskin_client.models.v2_price_quote import V2PriceQuote as V2PriceQuote
|
|
481
|
+
from openskin_client.models.v2_principal_response import V2PrincipalResponse as V2PrincipalResponse
|
|
482
|
+
from openskin_client.models.v2_profile_batch_request import V2ProfileBatchRequest as V2ProfileBatchRequest
|
|
483
|
+
from openskin_client.models.v2_profile_batch_result import V2ProfileBatchResult as V2ProfileBatchResult
|
|
484
|
+
from openskin_client.models.v2_profile_batch_result_error import V2ProfileBatchResultError as V2ProfileBatchResultError
|
|
485
|
+
from openskin_client.models.v2_profile_cache import V2ProfileCache as V2ProfileCache
|
|
486
|
+
from openskin_client.models.v2_public_inspect_asset_record import V2PublicInspectAssetRecord as V2PublicInspectAssetRecord
|
|
487
|
+
from openskin_client.models.v2_published_viewer_session_request import V2PublishedViewerSessionRequest as V2PublishedViewerSessionRequest
|
|
488
|
+
from openskin_client.models.v2_render_item_request import V2RenderItemRequest as V2RenderItemRequest
|
|
489
|
+
from openskin_client.models.v2_render_item_request_item import V2RenderItemRequestItem as V2RenderItemRequestItem
|
|
490
|
+
from openskin_client.models.v2_render_item_request_state import V2RenderItemRequestState as V2RenderItemRequestState
|
|
491
|
+
from openskin_client.models.v2_resolve_item_request import V2ResolveItemRequest as V2ResolveItemRequest
|
|
492
|
+
from openskin_client.models.v2_resolve_item_response import V2ResolveItemResponse as V2ResolveItemResponse
|
|
493
|
+
from openskin_client.models.v2_resolve_steam_identity_response import V2ResolveSteamIdentityResponse as V2ResolveSteamIdentityResponse
|
|
494
|
+
from openskin_client.models.v2_scene import V2Scene as V2Scene
|
|
495
|
+
from openskin_client.models.v2_scene_document import V2SceneDocument as V2SceneDocument
|
|
496
|
+
from openskin_client.models.v2_scene_document_chrome import V2SceneDocumentChrome as V2SceneDocumentChrome
|
|
497
|
+
from openskin_client.models.v2_scene_document_chrome_watermark import V2SceneDocumentChromeWatermark as V2SceneDocumentChromeWatermark
|
|
498
|
+
from openskin_client.models.v2_scene_document_presentation import V2SceneDocumentPresentation as V2SceneDocumentPresentation
|
|
499
|
+
from openskin_client.models.v2_scene_document_presentation_background import V2SceneDocumentPresentationBackground as V2SceneDocumentPresentationBackground
|
|
500
|
+
from openskin_client.models.v2_scene_document_presentation_camera import V2SceneDocumentPresentationCamera as V2SceneDocumentPresentationCamera
|
|
501
|
+
from openskin_client.models.v2_scene_mutation_receipt import V2SceneMutationReceipt as V2SceneMutationReceipt
|
|
502
|
+
from openskin_client.models.v2_steam_account import V2SteamAccount as V2SteamAccount
|
|
503
|
+
from openskin_client.models.v2_steam_account_control_receipt import V2SteamAccountControlReceipt as V2SteamAccountControlReceipt
|
|
504
|
+
from openskin_client.models.v2_steam_account_control_request import V2SteamAccountControlRequest as V2SteamAccountControlRequest
|
|
505
|
+
from openskin_client.models.v2_steam_account_create_request import V2SteamAccountCreateRequest as V2SteamAccountCreateRequest
|
|
506
|
+
from openskin_client.models.v2_steam_account_health import V2SteamAccountHealth as V2SteamAccountHealth
|
|
507
|
+
from openskin_client.models.v2_steam_account_health_authenticator import V2SteamAccountHealthAuthenticator as V2SteamAccountHealthAuthenticator
|
|
508
|
+
from openskin_client.models.v2_steam_account_health_commands import V2SteamAccountHealthCommands as V2SteamAccountHealthCommands
|
|
509
|
+
from openskin_client.models.v2_steam_account_health_inventory import V2SteamAccountHealthInventory as V2SteamAccountHealthInventory
|
|
510
|
+
from openskin_client.models.v2_steam_account_health_reconciliation import V2SteamAccountHealthReconciliation as V2SteamAccountHealthReconciliation
|
|
511
|
+
from openskin_client.models.v2_steam_account_health_session import V2SteamAccountHealthSession as V2SteamAccountHealthSession
|
|
512
|
+
from openskin_client.models.v2_steam_account_health_trading import V2SteamAccountHealthTrading as V2SteamAccountHealthTrading
|
|
513
|
+
from openskin_client.models.v2_steam_account_health_worker import V2SteamAccountHealthWorker as V2SteamAccountHealthWorker
|
|
514
|
+
from openskin_client.models.v2_steam_ban_signals import V2SteamBanSignals as V2SteamBanSignals
|
|
515
|
+
from openskin_client.models.v2_steam_command_page import V2SteamCommandPage as V2SteamCommandPage
|
|
516
|
+
from openskin_client.models.v2_steam_command_page_response import V2SteamCommandPageResponse as V2SteamCommandPageResponse
|
|
517
|
+
from openskin_client.models.v2_steam_friend import V2SteamFriend as V2SteamFriend
|
|
518
|
+
from openskin_client.models.v2_steam_friend_list import V2SteamFriendList as V2SteamFriendList
|
|
519
|
+
from openskin_client.models.v2_steam_id_formats import V2SteamIDFormats as V2SteamIDFormats
|
|
520
|
+
from openskin_client.models.v2_steam_identity_resolution import V2SteamIdentityResolution as V2SteamIdentityResolution
|
|
521
|
+
from openskin_client.models.v2_steam_login_request import V2SteamLoginRequest as V2SteamLoginRequest
|
|
522
|
+
from openskin_client.models.v2_steam_profile import V2SteamProfile as V2SteamProfile
|
|
523
|
+
from openskin_client.models.v2_steam_trade_budget_usage import V2SteamTradeBudgetUsage as V2SteamTradeBudgetUsage
|
|
524
|
+
from openskin_client.models.v2_steam_trade_eligibility import V2SteamTradeEligibility as V2SteamTradeEligibility
|
|
525
|
+
from openskin_client.models.v2_steam_trade_history_sync_request import V2SteamTradeHistorySyncRequest as V2SteamTradeHistorySyncRequest
|
|
526
|
+
from openskin_client.models.v2_steam_trade_hold_request import V2SteamTradeHoldRequest as V2SteamTradeHoldRequest
|
|
527
|
+
from openskin_client.models.v2_steam_trade_policy import V2SteamTradePolicy as V2SteamTradePolicy
|
|
528
|
+
from openskin_client.models.v2_steam_web_api_key_request import V2SteamWebAPIKeyRequest as V2SteamWebAPIKeyRequest
|
|
529
|
+
from openskin_client.models.v2_trade_asset import V2TradeAsset as V2TradeAsset
|
|
530
|
+
from openskin_client.models.v2_trade_authorization_receipt import V2TradeAuthorizationReceipt as V2TradeAuthorizationReceipt
|
|
531
|
+
from openskin_client.models.v2_trade_intent import V2TradeIntent as V2TradeIntent
|
|
532
|
+
from openskin_client.models.v2_trade_intent_execution import V2TradeIntentExecution as V2TradeIntentExecution
|
|
533
|
+
from openskin_client.models.v2_trade_intent_execution_response import V2TradeIntentExecutionResponse as V2TradeIntentExecutionResponse
|
|
534
|
+
from openskin_client.models.v2_trade_intent_page import V2TradeIntentPage as V2TradeIntentPage
|
|
535
|
+
from openskin_client.models.v2_trade_intent_page_response import V2TradeIntentPageResponse as V2TradeIntentPageResponse
|
|
536
|
+
from openskin_client.models.v2_trade_intent_preview import V2TradeIntentPreview as V2TradeIntentPreview
|
|
537
|
+
from openskin_client.models.v2_trade_intent_preview_response import V2TradeIntentPreviewResponse as V2TradeIntentPreviewResponse
|
|
538
|
+
from openskin_client.models.v2_trade_intent_response import V2TradeIntentResponse as V2TradeIntentResponse
|
|
539
|
+
from openskin_client.models.v2_trade_operation import V2TradeOperation as V2TradeOperation
|
|
540
|
+
from openskin_client.models.v2_trade_page import V2TradePage as V2TradePage
|
|
541
|
+
from openskin_client.models.v2_update_steam_account_controls_response import V2UpdateSteamAccountControlsResponse as V2UpdateSteamAccountControlsResponse
|
|
542
|
+
from openskin_client.models.v2_update_steam_trade_policy import V2UpdateSteamTradePolicy as V2UpdateSteamTradePolicy
|
|
543
|
+
from openskin_client.models.v2_usage_operation import V2UsageOperation as V2UsageOperation
|
|
544
|
+
from openskin_client.models.v2_usage_summary import V2UsageSummary as V2UsageSummary
|
|
545
|
+
from openskin_client.models.v2_usage_window import V2UsageWindow as V2UsageWindow
|
|
546
|
+
from openskin_client.models.v2_viewer_scene_receipt import V2ViewerSceneReceipt as V2ViewerSceneReceipt
|
|
547
|
+
from openskin_client.models.v2_viewer_session import V2ViewerSession as V2ViewerSession
|
|
548
|
+
from openskin_client.models.v2_viewer_session_receipt import V2ViewerSessionReceipt as V2ViewerSessionReceipt
|
|
549
|
+
from openskin_client.models.v2_viewer_session_request import V2ViewerSessionRequest as V2ViewerSessionRequest
|
|
550
|
+
from openskin_client.models.v2_webhook_command_receipt import V2WebhookCommandReceipt as V2WebhookCommandReceipt
|
|
551
|
+
from openskin_client.models.v2_webhook_delivery import V2WebhookDelivery as V2WebhookDelivery
|
|
552
|
+
from openskin_client.models.v2_webhook_endpoint import V2WebhookEndpoint as V2WebhookEndpoint
|
|
553
|
+
from openskin_client.models.v2_webhook_endpoint_request import V2WebhookEndpointRequest as V2WebhookEndpointRequest
|
|
554
|
+
from openskin_client.models.v2_webhook_endpoint_update_request import V2WebhookEndpointUpdateRequest as V2WebhookEndpointUpdateRequest
|
|
555
|
+
from openskin_client.models.v2_webhook_event_types_response import V2WebhookEventTypesResponse as V2WebhookEventTypesResponse
|
|
556
|
+
from openskin_client.models.v2_webhook_retry_receipt import V2WebhookRetryReceipt as V2WebhookRetryReceipt
|
|
557
|
+
from openskin_client.models.v2_webhook_secret_receipt import V2WebhookSecretReceipt as V2WebhookSecretReceipt
|
|
558
|
+
from openskin_client.models.v2_webhook_test_receipt import V2WebhookTestReceipt as V2WebhookTestReceipt
|
|
559
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from openskin_client.api.platform_v2_api import PlatformV2Api
|
|
5
|
+
from openskin_client.api.platform_v2_automation_api import PlatformV2AutomationApi
|
|
6
|
+
from openskin_client.api.platform_v2_market_analytics_api import PlatformV2MarketAnalyticsApi
|
|
7
|
+
from openskin_client.api.platform_v2_media_api import PlatformV2MediaApi
|
|
8
|
+
from openskin_client.api.platform_v2_pricing_api import PlatformV2PricingApi
|
|
9
|
+
from openskin_client.api.platform_v2_profiles_api import PlatformV2ProfilesApi
|
|
10
|
+
from openskin_client.api.platform_v2_webhooks_api import PlatformV2WebhooksApi
|
|
11
|
+
|