shopline-sdk-python 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.
- shopline_sdk/__init__.py +17 -0
- shopline_sdk/apis/__init__.py +0 -0
- shopline_sdk/apis/addon_products/__init__.py +0 -0
- shopline_sdk/apis/addon_products/bulk_update_addon_product_quantity_by_sku.py +72 -0
- shopline_sdk/apis/addon_products/create_addon_product.py +69 -0
- shopline_sdk/apis/addon_products/get_addon_product.py +42 -0
- shopline_sdk/apis/addon_products/get_addon_product_stocks.py +66 -0
- shopline_sdk/apis/addon_products/get_addon_products.py +84 -0
- shopline_sdk/apis/addon_products/search_addon_products.py +113 -0
- shopline_sdk/apis/addon_products/update_addon_product.py +54 -0
- shopline_sdk/apis/addon_products/update_addon_product_quantity.py +96 -0
- shopline_sdk/apis/addon_products/update_addon_product_stock.py +86 -0
- shopline_sdk/apis/affiliate_campaigns/__init__.py +0 -0
- shopline_sdk/apis/affiliate_campaigns/create_affiliate_campaign.py +109 -0
- shopline_sdk/apis/affiliate_campaigns/delete_affiliate_campaign.py +44 -0
- shopline_sdk/apis/affiliate_campaigns/export_affiliate_campaign_report_to_partner.py +60 -0
- shopline_sdk/apis/affiliate_campaigns/get_affiliate_campaign.py +59 -0
- shopline_sdk/apis/affiliate_campaigns/get_affiliate_campaign_orders.py +75 -0
- shopline_sdk/apis/affiliate_campaigns/get_affiliate_campaign_summary.py +49 -0
- shopline_sdk/apis/affiliate_campaigns/get_affiliate_campaigns.py +84 -0
- shopline_sdk/apis/affiliate_campaigns/get_products_sales_ranking_of_campaign.py +73 -0
- shopline_sdk/apis/affiliate_campaigns/update_affiliate_campaign.py +96 -0
- shopline_sdk/apis/agents/__init__.py +0 -0
- shopline_sdk/apis/agents/get_agent.py +59 -0
- shopline_sdk/apis/agents/get_agents.py +77 -0
- shopline_sdk/apis/bulk_operations/__init__.py +0 -0
- shopline_sdk/apis/bulk_operations/get_a_bulk_operation.py +43 -0
- shopline_sdk/apis/bulk_operations/get_bulk_operations.py +57 -0
- shopline_sdk/apis/cart_item_app_metafields/__init__.py +0 -0
- shopline_sdk/apis/cart_item_app_metafields/bulk_create_app_metafield.py +52 -0
- shopline_sdk/apis/cart_item_app_metafields/bulk_delete_app_metafield.py +61 -0
- shopline_sdk/apis/cart_item_app_metafields/bulk_update_app_metafield.py +62 -0
- shopline_sdk/apis/cart_item_app_metafields/get_app_metafields_attached_to_cart_items_of_specific_cart.py +61 -0
- shopline_sdk/apis/cart_item_metafields/__init__.py +0 -0
- shopline_sdk/apis/cart_item_metafields/bulk_create_metafield.py +52 -0
- shopline_sdk/apis/cart_item_metafields/bulk_delete_metafield.py +62 -0
- shopline_sdk/apis/cart_item_metafields/bulk_update_metafield.py +62 -0
- shopline_sdk/apis/cart_item_metafields/get_metafields_attached_to_cart_items_of_specific_cart.py +62 -0
- shopline_sdk/apis/carts/__init__.py +0 -0
- shopline_sdk/apis/carts/bulk_add_items_to_cart.py +80 -0
- shopline_sdk/apis/carts/bulk_delete_cart_items.py +59 -0
- shopline_sdk/apis/carts/bulk_patch_cart_items.py +61 -0
- shopline_sdk/apis/carts/get_cart.py +63 -0
- shopline_sdk/apis/carts/get_cart_id.py +74 -0
- shopline_sdk/apis/categories/__init__.py +0 -0
- shopline_sdk/apis/categories/bulk_assign.py +75 -0
- shopline_sdk/apis/categories/bulk_update_category_product_sorting.py +84 -0
- shopline_sdk/apis/categories/create_category.py +62 -0
- shopline_sdk/apis/categories/delete_category.py +62 -0
- shopline_sdk/apis/categories/get_categories.py +104 -0
- shopline_sdk/apis/categories/get_category.py +76 -0
- shopline_sdk/apis/categories/update_category.py +70 -0
- shopline_sdk/apis/channels/__init__.py +0 -0
- shopline_sdk/apis/channels/create_product_channel_price.py +45 -0
- shopline_sdk/apis/channels/get_channel.py +76 -0
- shopline_sdk/apis/channels/get_channels.py +83 -0
- shopline_sdk/apis/channels/get_product_channel_price.py +75 -0
- shopline_sdk/apis/channels/update_product_channel_price.py +45 -0
- shopline_sdk/apis/conversations/__init__.py +0 -0
- shopline_sdk/apis/conversations/create_order_message.py +91 -0
- shopline_sdk/apis/conversations/create_return_order_message.py +90 -0
- shopline_sdk/apis/conversations/create_shop_message.py +81 -0
- shopline_sdk/apis/conversations/get_conversations.py +76 -0
- shopline_sdk/apis/conversations/get_messages.py +76 -0
- shopline_sdk/apis/custom_fields/__init__.py +0 -0
- shopline_sdk/apis/custom_fields/get_custom_fields.py +42 -0
- shopline_sdk/apis/customer_app_metafields/__init__.py +0 -0
- shopline_sdk/apis/customer_app_metafields/create_specific_app_metafield.py +44 -0
- shopline_sdk/apis/customer_app_metafields/delete_specific_app_metafield.py +42 -0
- shopline_sdk/apis/customer_app_metafields/get_app_metafields_attached_to_specific_customer.py +61 -0
- shopline_sdk/apis/customer_app_metafields/get_specific_app_metafield.py +41 -0
- shopline_sdk/apis/customer_app_metafields/update_specific_app_metafield.py +44 -0
- shopline_sdk/apis/customer_group_children/__init__.py +0 -0
- shopline_sdk/apis/customer_group_children/get_children_group_of_the_customer_group.py +89 -0
- shopline_sdk/apis/customer_groups/__init__.py +0 -0
- shopline_sdk/apis/customer_groups/get_customer_group.py +65 -0
- shopline_sdk/apis/customer_groups/get_customer_groups.py +108 -0
- shopline_sdk/apis/customer_groups/get_customer_ids_of_the_specific_customer_group.py +84 -0
- shopline_sdk/apis/customer_groups/search_customer_groups.py +92 -0
- shopline_sdk/apis/customer_metafields/__init__.py +0 -0
- shopline_sdk/apis/customer_metafields/create_specific_metafield.py +44 -0
- shopline_sdk/apis/customer_metafields/delete_specific_metafield.py +42 -0
- shopline_sdk/apis/customer_metafields/get_metafields_attached_to_specific_customer.py +62 -0
- shopline_sdk/apis/customer_metafields/get_specific_metafield.py +41 -0
- shopline_sdk/apis/customer_metafields/update_specific_metafield.py +44 -0
- shopline_sdk/apis/customers/__init__.py +0 -0
- shopline_sdk/apis/customers/add_or_remove_customer_tags.py +93 -0
- shopline_sdk/apis/customers/create_customer.py +87 -0
- shopline_sdk/apis/customers/delete_customer.py +62 -0
- shopline_sdk/apis/customers/get_customer.py +94 -0
- shopline_sdk/apis/customers/get_customer_member_points_history.py +92 -0
- shopline_sdk/apis/customers/get_customer_store_credit_history.py +98 -0
- shopline_sdk/apis/customers/get_customers.py +127 -0
- shopline_sdk/apis/customers/get_line_customer.py +67 -0
- shopline_sdk/apis/customers/getcustomers_smembershipinfo.py +93 -0
- shopline_sdk/apis/customers/search_customers.py +216 -0
- shopline_sdk/apis/customers/update_customer.py +87 -0
- shopline_sdk/apis/customers/update_customer_member_points.py +113 -0
- shopline_sdk/apis/customers/update_customer_store_credits.py +172 -0
- shopline_sdk/apis/customers/update_customer_subscriptions.py +64 -0
- shopline_sdk/apis/customers/update_customer_tags.py +88 -0
- shopline_sdk/apis/delivery_options/__init__.py +0 -0
- shopline_sdk/apis/delivery_options/get_delivery_config.py +52 -0
- shopline_sdk/apis/delivery_options/get_delivery_option.py +42 -0
- shopline_sdk/apis/delivery_options/get_delivery_options.py +65 -0
- shopline_sdk/apis/delivery_options/get_delivery_time_slots.py +64 -0
- shopline_sdk/apis/delivery_options/updatedeliveryoption_sstoreinformation.py +67 -0
- shopline_sdk/apis/event_trackers/__init__.py +0 -0
- shopline_sdk/apis/event_trackers/create_an_event_tracker.py +83 -0
- shopline_sdk/apis/event_trackers/delete_an_event_tracker.py +57 -0
- shopline_sdk/apis/event_trackers/get_an_event_tracker.py +64 -0
- shopline_sdk/apis/event_trackers/get_event_trackers.py +97 -0
- shopline_sdk/apis/event_trackers/update_event_tracker.py +91 -0
- shopline_sdk/apis/flash_price_campaigns/__init__.py +0 -0
- shopline_sdk/apis/flash_price_campaigns/create_flash_price_campaign.py +45 -0
- shopline_sdk/apis/flash_price_campaigns/delete_flash_price_campaign.py +44 -0
- shopline_sdk/apis/flash_price_campaigns/get_a_flash_price_campaign.py +43 -0
- shopline_sdk/apis/flash_price_campaigns/get_flash_price_campaigns.py +72 -0
- shopline_sdk/apis/flash_price_campaigns/update_flash_price_campaign.py +46 -0
- shopline_sdk/apis/gifts/__init__.py +0 -0
- shopline_sdk/apis/gifts/bulk_update_quantity_by_sku.py +106 -0
- shopline_sdk/apis/gifts/create_gift.py +57 -0
- shopline_sdk/apis/gifts/get_gift_stocks.py +66 -0
- shopline_sdk/apis/gifts/get_gifts.py +86 -0
- shopline_sdk/apis/gifts/search_gifts.py +110 -0
- shopline_sdk/apis/gifts/update_gift.py +54 -0
- shopline_sdk/apis/gifts/update_gift_quantity.py +100 -0
- shopline_sdk/apis/gifts/update_gift_stock.py +86 -0
- shopline_sdk/apis/layouts/__init__.py +0 -0
- shopline_sdk/apis/layouts/get_layouts_sections.py +77 -0
- shopline_sdk/apis/medias/__init__.py +0 -0
- shopline_sdk/apis/medias/create_image.py +52 -0
- shopline_sdk/apis/member_point_rules/__init__.py +0 -0
- shopline_sdk/apis/member_point_rules/get_member_point_rules.py +55 -0
- shopline_sdk/apis/member_points/__init__.py +0 -0
- shopline_sdk/apis/member_points/bulk_update_member_points.py +87 -0
- shopline_sdk/apis/membership_tiers/__init__.py +0 -0
- shopline_sdk/apis/membership_tiers/get_customer_membership_tier_history.py +84 -0
- shopline_sdk/apis/membership_tiers/get_membership_tiers.py +65 -0
- shopline_sdk/apis/merchant_app_metafields/__init__.py +0 -0
- shopline_sdk/apis/merchant_app_metafields/get_app_metafields_attached_to_current_merchant.py +61 -0
- shopline_sdk/apis/merchant_metafields/__init__.py +0 -0
- shopline_sdk/apis/merchant_metafields/get_metafields_attached_to_current_merchant.py +62 -0
- shopline_sdk/apis/merchants/__init__.py +0 -0
- shopline_sdk/apis/merchants/generatemerchant_sexpresscartlink.py +66 -0
- shopline_sdk/apis/merchants/get_merchant.py +56 -0
- shopline_sdk/apis/merchants/get_merchants.py +46 -0
- shopline_sdk/apis/metafield_definitions/__init__.py +0 -0
- shopline_sdk/apis/metafield_definitions/create_specific_metafield_definition.py +44 -0
- shopline_sdk/apis/metafield_definitions/get_an_array_of_metafield_definitions.py +45 -0
- shopline_sdk/apis/metafield_definitions/get_specific_metafield_definition.py +41 -0
- shopline_sdk/apis/multipass_linking/__init__.py +0 -0
- shopline_sdk/apis/multipass_linking/delete_multipass_linking_for_customer.py +61 -0
- shopline_sdk/apis/multipass_linking/get_active_multipass_linkings.py +67 -0
- shopline_sdk/apis/multipass_linking/update_multipass_linking_for_customer.py +69 -0
- shopline_sdk/apis/multipass_secret/__init__.py +0 -0
- shopline_sdk/apis/multipass_secret/create_multipass_secret.py +41 -0
- shopline_sdk/apis/multipass_secret/get_multipass_secret.py +50 -0
- shopline_sdk/apis/order_app_metafields/__init__.py +0 -0
- shopline_sdk/apis/order_app_metafields/get_app_metafields_attached_to_specific_order.py +61 -0
- shopline_sdk/apis/order_deliveries/__init__.py +0 -0
- shopline_sdk/apis/order_deliveries/get_order_delivery.py +43 -0
- shopline_sdk/apis/order_deliveries/update_order_delivery.py +63 -0
- shopline_sdk/apis/order_item_app_metafields/__init__.py +0 -0
- shopline_sdk/apis/order_item_app_metafields/get_app_metafields_attached_to_order_items_of_specific_order.py +61 -0
- shopline_sdk/apis/order_item_metafields/__init__.py +0 -0
- shopline_sdk/apis/order_item_metafields/get_metafields_attached_to_order_items_of_specific_order.py +62 -0
- shopline_sdk/apis/order_metafields/__init__.py +0 -0
- shopline_sdk/apis/order_metafields/get_metafields_attached_to_specific_order.py +62 -0
- shopline_sdk/apis/orders/__init__.py +0 -0
- shopline_sdk/apis/orders/bulk_execute_shipment.py +70 -0
- shopline_sdk/apis/orders/cancel_order.py +70 -0
- shopline_sdk/apis/orders/create_archived_orders_report.py +72 -0
- shopline_sdk/apis/orders/create_order.py +90 -0
- shopline_sdk/apis/orders/execute_shipment.py +63 -0
- shopline_sdk/apis/orders/get_all_orders_tags.py +54 -0
- shopline_sdk/apis/orders/get_order.py +78 -0
- shopline_sdk/apis/orders/get_order_action_logs.py +62 -0
- shopline_sdk/apis/orders/get_order_labels_of_delivery.py +94 -0
- shopline_sdk/apis/orders/get_order_transaction_by_order_ids.py +58 -0
- shopline_sdk/apis/orders/get_orders.py +111 -0
- shopline_sdk/apis/orders/search_orders.py +339 -0
- shopline_sdk/apis/orders/split_order.py +84 -0
- shopline_sdk/apis/orders/update_order.py +123 -0
- shopline_sdk/apis/orders/update_order_delivery_status.py +88 -0
- shopline_sdk/apis/orders/update_order_payment_status.py +92 -0
- shopline_sdk/apis/orders/update_order_status.py +94 -0
- shopline_sdk/apis/orders/update_order_tags.py +91 -0
- shopline_sdk/apis/payments/__init__.py +0 -0
- shopline_sdk/apis/payments/get_payment.py +59 -0
- shopline_sdk/apis/payments/get_payments.py +88 -0
- shopline_sdk/apis/product_app_metafields/__init__.py +0 -0
- shopline_sdk/apis/product_app_metafields/get_app_metafields_attached_to_specific_product.py +61 -0
- shopline_sdk/apis/product_metafields/__init__.py +0 -0
- shopline_sdk/apis/product_metafields/get_metafields_attached_to_specific_product.py +62 -0
- shopline_sdk/apis/product_review_comments/__init__.py +0 -0
- shopline_sdk/apis/product_review_comments/bulk_create_product_review_comments.py +66 -0
- shopline_sdk/apis/product_review_comments/bulk_delete_product_review_comments.py +46 -0
- shopline_sdk/apis/product_review_comments/bulk_update_product_review_comments.py +64 -0
- shopline_sdk/apis/product_review_comments/create_product_review_comments.py +45 -0
- shopline_sdk/apis/product_review_comments/delete_product_review_comment.py +37 -0
- shopline_sdk/apis/product_review_comments/get_product_review_comment.py +42 -0
- shopline_sdk/apis/product_review_comments/get_product_review_comments.py +91 -0
- shopline_sdk/apis/product_review_comments/update_product_review_comment.py +45 -0
- shopline_sdk/apis/product_subscriptions/__init__.py +0 -0
- shopline_sdk/apis/product_subscriptions/get_a_list_of_product_subscriptions.py +71 -0
- shopline_sdk/apis/product_subscriptions/get_product_subscription.py +42 -0
- shopline_sdk/apis/products/__init__.py +0 -0
- shopline_sdk/apis/products/add_product_images.py +84 -0
- shopline_sdk/apis/products/batch_update_current_product_labels.py +73 -0
- shopline_sdk/apis/products/bulk_delete_product.py +77 -0
- shopline_sdk/apis/products/bulk_update_stock.py +81 -0
- shopline_sdk/apis/products/bulkpublish_unpublishproductinonlinestore.py +64 -0
- shopline_sdk/apis/products/bulkpublish_unpublishproductinretailstore.py +64 -0
- shopline_sdk/apis/products/create_product.py +54 -0
- shopline_sdk/apis/products/create_product_variation.py +70 -0
- shopline_sdk/apis/products/delete_product.py +70 -0
- shopline_sdk/apis/products/delete_product_images.py +54 -0
- shopline_sdk/apis/products/delete_product_variation.py +70 -0
- shopline_sdk/apis/products/get_locked_inventory_count.py +53 -0
- shopline_sdk/apis/products/get_product.py +79 -0
- shopline_sdk/apis/products/get_product_stocks.py +66 -0
- shopline_sdk/apis/products/get_products.py +112 -0
- shopline_sdk/apis/products/search_products.py +58 -0
- shopline_sdk/apis/products/update_current_product_tags.py +80 -0
- shopline_sdk/apis/products/update_product.py +54 -0
- shopline_sdk/apis/products/update_product_price.py +94 -0
- shopline_sdk/apis/products/update_product_quantity.py +102 -0
- shopline_sdk/apis/products/update_product_variation.py +46 -0
- shopline_sdk/apis/products/update_product_variation_price.py +92 -0
- shopline_sdk/apis/products/update_product_variation_quantity.py +111 -0
- shopline_sdk/apis/products/update_quantity_by_sku.py +114 -0
- shopline_sdk/apis/products/update_stock.py +89 -0
- shopline_sdk/apis/promotions/__init__.py +0 -0
- shopline_sdk/apis/promotions/create_promotion.py +45 -0
- shopline_sdk/apis/promotions/delete_promotion.py +44 -0
- shopline_sdk/apis/promotions/get_customer_coupon_promotions.py +61 -0
- shopline_sdk/apis/promotions/get_customer_promotions.py +63 -0
- shopline_sdk/apis/promotions/get_promotion.py +60 -0
- shopline_sdk/apis/promotions/get_promotions.py +106 -0
- shopline_sdk/apis/promotions/search_promotions.py +108 -0
- shopline_sdk/apis/promotions/update_promotion.py +54 -0
- shopline_sdk/apis/purchase_orders/__init__.py +0 -0
- shopline_sdk/apis/purchase_orders/create_child_purchase_order.py +66 -0
- shopline_sdk/apis/purchase_orders/create_purchase_order.py +66 -0
- shopline_sdk/apis/purchase_orders/delete_the_specified_purchase_orders.py +60 -0
- shopline_sdk/apis/purchase_orders/get_purchase_orders.py +89 -0
- shopline_sdk/apis/purchase_orders/get_the_specified_purchase_order.py +59 -0
- shopline_sdk/apis/purchase_orders/update_purchase_order.py +66 -0
- shopline_sdk/apis/return_orders/__init__.py +0 -0
- shopline_sdk/apis/return_orders/create_return_order.py +62 -0
- shopline_sdk/apis/return_orders/get_return_order.py +42 -0
- shopline_sdk/apis/return_orders/get_return_orders.py +95 -0
- shopline_sdk/apis/return_orders/update_return_order.py +70 -0
- shopline_sdk/apis/sales/__init__.py +0 -0
- shopline_sdk/apis/sales/create_sale_products.py +78 -0
- shopline_sdk/apis/sales/delete_sale_products.py +44 -0
- shopline_sdk/apis/sales/get_sale_comments.py +77 -0
- shopline_sdk/apis/sales/get_sale_customers.py +69 -0
- shopline_sdk/apis/sales/get_sale_products.py +74 -0
- shopline_sdk/apis/sales/update_sale_product_status.py +71 -0
- shopline_sdk/apis/sales/update_sale_products.py +78 -0
- shopline_sdk/apis/settings/__init__.py +0 -0
- shopline_sdk/apis/settings/get_checkout_setting.py +51 -0
- shopline_sdk/apis/settings/get_domains_setting.py +51 -0
- shopline_sdk/apis/settings/get_layouts_draft_setting.py +59 -0
- shopline_sdk/apis/settings/get_layouts_setting.py +59 -0
- shopline_sdk/apis/settings/get_orders_setting.py +51 -0
- shopline_sdk/apis/settings/get_payments_setting.py +51 -0
- shopline_sdk/apis/settings/get_pos_setting.py +51 -0
- shopline_sdk/apis/settings/get_product_review_setting.py +51 -0
- shopline_sdk/apis/settings/get_products_setting.py +51 -0
- shopline_sdk/apis/settings/get_promotions_setting.py +51 -0
- shopline_sdk/apis/settings/get_setting.py +42 -0
- shopline_sdk/apis/settings/get_shop_setting.py +51 -0
- shopline_sdk/apis/settings/get_tax_setting.py +51 -0
- shopline_sdk/apis/settings/get_theme_draft_setting.py +59 -0
- shopline_sdk/apis/settings/get_theme_setting.py +59 -0
- shopline_sdk/apis/settings/get_third_party_ads_setting.py +42 -0
- shopline_sdk/apis/settings/get_users_setting.py +65 -0
- shopline_sdk/apis/settings/publish_layouts_setting.py +73 -0
- shopline_sdk/apis/settings/publish_theme_setting.py +59 -0
- shopline_sdk/apis/settings/save_layouts_draft_setting.py +67 -0
- shopline_sdk/apis/settings/save_theme_setting.py +59 -0
- shopline_sdk/apis/settings/update_domains_setting.py +85 -0
- shopline_sdk/apis/staffs/__init__.py +0 -0
- shopline_sdk/apis/staffs/get_all_staff.py +62 -0
- shopline_sdk/apis/staffs/get_staff.py +59 -0
- shopline_sdk/apis/staffs/get_staff_permissions.py +62 -0
- shopline_sdk/apis/store_credits/__init__.py +0 -0
- shopline_sdk/apis/store_credits/bulk_update_store_credits.py +90 -0
- shopline_sdk/apis/store_credits/get_store_credits.py +87 -0
- shopline_sdk/apis/storefront_oauth_applications/__init__.py +0 -0
- shopline_sdk/apis/storefront_oauth_applications/create_storefront_o_auth_application.py +52 -0
- shopline_sdk/apis/storefront_oauth_applications/delete_storefront_oauth_application_by_id.py +47 -0
- shopline_sdk/apis/storefront_oauth_applications/get_storefront_o_auth_application.py +41 -0
- shopline_sdk/apis/storefront_oauth_applications/get_storefront_o_auth_application_by_id.py +50 -0
- shopline_sdk/apis/storefront_tokens/__init__.py +0 -0
- shopline_sdk/apis/storefront_tokens/create_storefront_token.py +60 -0
- shopline_sdk/apis/storefront_tokens/delete_storefront_token_by_id.py +54 -0
- shopline_sdk/apis/storefront_tokens/get_storefront_token_by_id.py +51 -0
- shopline_sdk/apis/storefront_tokens/list_all_storefront_tokens.py +46 -0
- shopline_sdk/apis/taxes/__init__.py +0 -0
- shopline_sdk/apis/taxes/get_taxes.py +65 -0
- shopline_sdk/apis/themes/__init__.py +0 -0
- shopline_sdk/apis/themes/get_theme_by_theme_key.py +63 -0
- shopline_sdk/apis/themes/getthethemesectionsbytheme_key.py +76 -0
- shopline_sdk/apis/token/__init__.py +0 -0
- shopline_sdk/apis/token/get_token_info.py +44 -0
- shopline_sdk/apis/user_coupons/__init__.py +0 -0
- shopline_sdk/apis/user_coupons/claim_user_coupon.py +45 -0
- shopline_sdk/apis/user_coupons/create_user_coupon.py +40 -0
- shopline_sdk/apis/user_coupons/get_user_coupons.py +55 -0
- shopline_sdk/apis/user_coupons/get_user_coupons_with_cursor.py +57 -0
- shopline_sdk/apis/user_coupons/redeem_user_coupon.py +45 -0
- shopline_sdk/apis/warehouses/__init__.py +0 -0
- shopline_sdk/apis/warehouses/get_warehouses.py +92 -0
- shopline_sdk/apis/webhooks/__init__.py +0 -0
- shopline_sdk/apis/webhooks/create_webhook.py +45 -0
- shopline_sdk/apis/webhooks/delete_webhook.py +37 -0
- shopline_sdk/apis/webhooks/get_webhook.py +42 -0
- shopline_sdk/apis/webhooks/get_webhooks.py +59 -0
- shopline_sdk/apis/webhooks/update_webhook.py +45 -0
- shopline_sdk/apis/wish_list_items/__init__.py +0 -0
- shopline_sdk/apis/wish_list_items/create_wish_list_item.py +68 -0
- shopline_sdk/apis/wish_list_items/delete_wish_list_item.py +89 -0
- shopline_sdk/apis/wish_list_items/get_wish_list_items.py +88 -0
- shopline_sdk/client.py +15 -0
- shopline_sdk/exceptions.py +48 -0
- shopline_sdk/helper.py +84 -0
- shopline_sdk/models/__init__.py +610 -0
- shopline_sdk/models/addon_product.py +50 -0
- shopline_sdk/models/addon_products.py +14 -0
- shopline_sdk/models/addon_products_cursor_based.py +15 -0
- shopline_sdk/models/address_node.py +27 -0
- shopline_sdk/models/address_nodes.py +20 -0
- shopline_sdk/models/address_preference.py +46 -0
- shopline_sdk/models/address_preference_layout_data.py +15 -0
- shopline_sdk/models/address_preferences.py +16 -0
- shopline_sdk/models/affiliate.py +32 -0
- shopline_sdk/models/affiliate_campaign.py +53 -0
- shopline_sdk/models/affiliate_campaign_order.py +75 -0
- shopline_sdk/models/affiliate_campaign_orders.py +16 -0
- shopline_sdk/models/affiliate_campaigns.py +20 -0
- shopline_sdk/models/agent.py +20 -0
- shopline_sdk/models/agent_work_log.py +30 -0
- shopline_sdk/models/agent_work_logs.py +12 -0
- shopline_sdk/models/agents.py +14 -0
- shopline_sdk/models/analytics.py +12 -0
- shopline_sdk/models/app_metafield_value.py +26 -0
- shopline_sdk/models/app_setting.py +9 -0
- shopline_sdk/models/bad_request_error.py +14 -0
- shopline_sdk/models/bearer_auth.py +9 -0
- shopline_sdk/models/bulk_delete_metafield_body.py +15 -0
- shopline_sdk/models/bulk_update_app_metafield_body.py +16 -0
- shopline_sdk/models/bulk_update_metafield_body.py +17 -0
- shopline_sdk/models/campaign_product.py +18 -0
- shopline_sdk/models/cart.py +128 -0
- shopline_sdk/models/cart_delivery.py +24 -0
- shopline_sdk/models/cart_item.py +51 -0
- shopline_sdk/models/cart_product.py +83 -0
- shopline_sdk/models/cart_product_variation.py +36 -0
- shopline_sdk/models/cart_promotion.py +19 -0
- shopline_sdk/models/categories.py +14 -0
- shopline_sdk/models/categories_cursor_based.py +15 -0
- shopline_sdk/models/category.py +45 -0
- shopline_sdk/models/category_layout.py +23 -0
- shopline_sdk/models/change_payment_method_response.py +14 -0
- shopline_sdk/models/channel.py +49 -0
- shopline_sdk/models/channel_param.py +11 -0
- shopline_sdk/models/channels.py +14 -0
- shopline_sdk/models/checkout_setting.py +37 -0
- shopline_sdk/models/corporate_info.py +34 -0
- shopline_sdk/models/coupon_item.py +53 -0
- shopline_sdk/models/create_agent_body.py +17 -0
- shopline_sdk/models/create_agent_work_log_request_body.py +18 -0
- shopline_sdk/models/create_app_metafield_body.py +15 -0
- shopline_sdk/models/create_bulk_operation_body.py +22 -0
- shopline_sdk/models/create_category_body.py +27 -0
- shopline_sdk/models/create_channel_price_body.py +21 -0
- shopline_sdk/models/create_customer_body.py +63 -0
- shopline_sdk/models/create_customer_group_activity_body.py +24 -0
- shopline_sdk/models/create_delivery_option_body.py +38 -0
- shopline_sdk/models/create_event_tracker_body.py +23 -0
- shopline_sdk/models/create_flash_price_campaign_body.py +22 -0
- shopline_sdk/models/create_metafield_body.py +16 -0
- shopline_sdk/models/create_metafield_definition_body.py +18 -0
- shopline_sdk/models/create_page_body.py +25 -0
- shopline_sdk/models/create_product_body.py +84 -0
- shopline_sdk/models/create_product_feed_setting_body.py +31 -0
- shopline_sdk/models/create_product_review_comment_body.py +21 -0
- shopline_sdk/models/create_product_variation_body.py +13 -0
- shopline_sdk/models/create_promotion_body.py +56 -0
- shopline_sdk/models/create_return_order_body.py +49 -0
- shopline_sdk/models/create_sub_res_app_metafield_body.py +16 -0
- shopline_sdk/models/create_sub_res_metafield_body.py +17 -0
- shopline_sdk/models/create_user_coupon_body.py +18 -0
- shopline_sdk/models/create_webhook_body.py +14 -0
- shopline_sdk/models/create_wish_list_item_body.py +27 -0
- shopline_sdk/models/cursor_based_paginatable.py +12 -0
- shopline_sdk/models/custom_field.py +18 -0
- shopline_sdk/models/customer.py +200 -0
- shopline_sdk/models/customer_coupon_promotions.py +12 -0
- shopline_sdk/models/customer_group.py +33 -0
- shopline_sdk/models/customer_group_activity.py +28 -0
- shopline_sdk/models/customer_groups.py +14 -0
- shopline_sdk/models/customer_promotion.py +54 -0
- shopline_sdk/models/customer_viewed_categories.py +14 -0
- shopline_sdk/models/customer_viewed_category.py +14 -0
- shopline_sdk/models/customer_viewed_product.py +14 -0
- shopline_sdk/models/customer_viewed_products.py +14 -0
- shopline_sdk/models/delivery_option.py +74 -0
- shopline_sdk/models/delivery_rate.py +17 -0
- shopline_sdk/models/delivery_time_slot.py +27 -0
- shopline_sdk/models/domains_setting.py +13 -0
- shopline_sdk/models/domains_setting_webmaster.py +20 -0
- shopline_sdk/models/end_date_param.py +10 -0
- shopline_sdk/models/entity_render_error.py +11 -0
- shopline_sdk/models/event_tracker.py +35 -0
- shopline_sdk/models/event_trackers.py +14 -0
- shopline_sdk/models/extend_promotion.py +25 -0
- shopline_sdk/models/facebook_business_extension_domains_entity.py +16 -0
- shopline_sdk/models/filter_tag.py +14 -0
- shopline_sdk/models/flash_price_campaign.py +39 -0
- shopline_sdk/models/flash_price_campaigns.py +16 -0
- shopline_sdk/models/forbidden_error.py +14 -0
- shopline_sdk/models/gift.py +54 -0
- shopline_sdk/models/gifts.py +14 -0
- shopline_sdk/models/gifts_cursor_based.py +15 -0
- shopline_sdk/models/global_section.py +12 -0
- shopline_sdk/models/global_section_settings.py +27 -0
- shopline_sdk/models/gross_amount_analytics.py +28 -0
- shopline_sdk/models/gross_orders_analytics.py +29 -0
- shopline_sdk/models/individual_info.py +14 -0
- shopline_sdk/models/interval_param.py +11 -0
- shopline_sdk/models/invoice.py +17 -0
- shopline_sdk/models/is_real_time_param.py +10 -0
- shopline_sdk/models/job.py +48 -0
- shopline_sdk/models/jobs.py +14 -0
- shopline_sdk/models/layout_sections.py +12 -0
- shopline_sdk/models/layouts_setting.py +14 -0
- shopline_sdk/models/limit_exceeded_error.py +14 -0
- shopline_sdk/models/link.py +39 -0
- shopline_sdk/models/lock_inventory.py +9 -0
- shopline_sdk/models/lock_inventory_count.py +14 -0
- shopline_sdk/models/max_applicable_member_point.py +16 -0
- shopline_sdk/models/media.py +16 -0
- shopline_sdk/models/media_upload_error.py +10 -0
- shopline_sdk/models/member_point.py +28 -0
- shopline_sdk/models/member_point_fulfillment.py +23 -0
- shopline_sdk/models/member_point_rule.py +40 -0
- shopline_sdk/models/member_point_rules.py +12 -0
- shopline_sdk/models/member_points.py +14 -0
- shopline_sdk/models/member_registration_analytics.py +29 -0
- shopline_sdk/models/membership_info.py +56 -0
- shopline_sdk/models/membership_tier.py +26 -0
- shopline_sdk/models/membership_tier_action_log.py +19 -0
- shopline_sdk/models/membership_tier_action_logs.py +14 -0
- shopline_sdk/models/membership_tier_rule.py +53 -0
- shopline_sdk/models/merchant.py +78 -0
- shopline_sdk/models/merchant_kyc.py +24 -0
- shopline_sdk/models/merchant_tax.py +50 -0
- shopline_sdk/models/metafield_definition.py +28 -0
- shopline_sdk/models/metafield_value.py +28 -0
- shopline_sdk/models/money.py +13 -0
- shopline_sdk/models/multipass_linking.py +22 -0
- shopline_sdk/models/multipass_linkings.py +16 -0
- shopline_sdk/models/multipass_secret.py +20 -0
- shopline_sdk/models/net_amount_analytics.py +28 -0
- shopline_sdk/models/net_orders_analytics.py +29 -0
- shopline_sdk/models/not_found_error.py +12 -0
- shopline_sdk/models/order.py +218 -0
- shopline_sdk/models/order_action_log.py +16 -0
- shopline_sdk/models/order_action_logs.py +12 -0
- shopline_sdk/models/order_agent.py +16 -0
- shopline_sdk/models/order_campaign_item.py +27 -0
- shopline_sdk/models/order_comment.py +28 -0
- shopline_sdk/models/order_conversation.py +39 -0
- shopline_sdk/models/order_conversations.py +14 -0
- shopline_sdk/models/order_conversations_message.py +32 -0
- shopline_sdk/models/order_conversations_messages.py +16 -0
- shopline_sdk/models/order_customer_info.py +24 -0
- shopline_sdk/models/order_delivery.py +57 -0
- shopline_sdk/models/order_delivery_address.py +37 -0
- shopline_sdk/models/order_delivery_data.py +28 -0
- shopline_sdk/models/order_inspect_item.py +18 -0
- shopline_sdk/models/order_invoice.py +32 -0
- shopline_sdk/models/order_item.py +93 -0
- shopline_sdk/models/order_payment.py +38 -0
- shopline_sdk/models/order_promotion_item.py +24 -0
- shopline_sdk/models/order_source.py +16 -0
- shopline_sdk/models/order_tag.py +10 -0
- shopline_sdk/models/order_transaction.py +32 -0
- shopline_sdk/models/orders_setting.py +25 -0
- shopline_sdk/models/page.py +49 -0
- shopline_sdk/models/page_block_settings.py +12 -0
- shopline_sdk/models/page_section.py +14 -0
- shopline_sdk/models/page_section_schema.py +37 -0
- shopline_sdk/models/page_section_settings.py +29 -0
- shopline_sdk/models/page_sections.py +12 -0
- shopline_sdk/models/paginatable.py +16 -0
- shopline_sdk/models/pagination.py +12 -0
- shopline_sdk/models/payment.py +33 -0
- shopline_sdk/models/payment_config_data.py +14 -0
- shopline_sdk/models/payment_fee_item.py +31 -0
- shopline_sdk/models/payment_settlement.py +47 -0
- shopline_sdk/models/payments_setting.py +17 -0
- shopline_sdk/models/pos_payment.py +19 -0
- shopline_sdk/models/pos_setting.py +15 -0
- shopline_sdk/models/price_detail.py +15 -0
- shopline_sdk/models/price_set.py +29 -0
- shopline_sdk/models/price_sets.py +12 -0
- shopline_sdk/models/product.py +201 -0
- shopline_sdk/models/product_feed_setting.py +45 -0
- shopline_sdk/models/product_feed_settings.py +14 -0
- shopline_sdk/models/product_ids_param.py +10 -0
- shopline_sdk/models/product_price_tier.py +26 -0
- shopline_sdk/models/product_related_theme_settings.py +23 -0
- shopline_sdk/models/product_revenue.py +26 -0
- shopline_sdk/models/product_revenues.py +14 -0
- shopline_sdk/models/product_review.py +28 -0
- shopline_sdk/models/product_review_comment.py +31 -0
- shopline_sdk/models/product_review_comments.py +14 -0
- shopline_sdk/models/product_review_comments_cursor_based.py +15 -0
- shopline_sdk/models/product_review_setting.py +32 -0
- shopline_sdk/models/product_reviews.py +14 -0
- shopline_sdk/models/product_stock.py +34 -0
- shopline_sdk/models/product_subscription.py +34 -0
- shopline_sdk/models/product_variation.py +56 -0
- shopline_sdk/models/products_cursor_based.py +17 -0
- shopline_sdk/models/products_setting.py +28 -0
- shopline_sdk/models/promotion.py +104 -0
- shopline_sdk/models/promotion_condition.py +27 -0
- shopline_sdk/models/promotion_excluded_hints.py +16 -0
- shopline_sdk/models/promotions_setting.py +28 -0
- shopline_sdk/models/purchase_order.py +63 -0
- shopline_sdk/models/purchase_order_item.py +66 -0
- shopline_sdk/models/purchase_orders.py +14 -0
- shopline_sdk/models/quantity_update_not_allowed_error.py +14 -0
- shopline_sdk/models/retail_status.py +11 -0
- shopline_sdk/models/return_order.py +75 -0
- shopline_sdk/models/return_order_delivery.py +26 -0
- shopline_sdk/models/return_order_delivery_address.py +37 -0
- shopline_sdk/models/return_order_delivery_data.py +28 -0
- shopline_sdk/models/return_order_item.py +33 -0
- shopline_sdk/models/return_order_payment.py +28 -0
- shopline_sdk/models/return_order_promotion_item.py +22 -0
- shopline_sdk/models/return_order_ref_data.py +10 -0
- shopline_sdk/models/return_orders.py +14 -0
- shopline_sdk/models/sale_comment.py +30 -0
- shopline_sdk/models/sale_customer.py +31 -0
- shopline_sdk/models/sale_product.py +21 -0
- shopline_sdk/models/save_draft_body.py +25 -0
- shopline_sdk/models/sc_conversation.py +31 -0
- shopline_sdk/models/sc_conversations.py +14 -0
- shopline_sdk/models/sc_conversations_message.py +30 -0
- shopline_sdk/models/sc_conversations_messages.py +16 -0
- shopline_sdk/models/search_products_body.py +71 -0
- shopline_sdk/models/server_error.py +12 -0
- shopline_sdk/models/service_unavailable_error.py +12 -0
- shopline_sdk/models/settings.py +30 -0
- shopline_sdk/models/settlement_terminal_list.py +9 -0
- shopline_sdk/models/shop_conversation.py +31 -0
- shopline_sdk/models/shop_conversations.py +14 -0
- shopline_sdk/models/shop_conversations_message.py +30 -0
- shopline_sdk/models/shop_conversations_messages.py +16 -0
- shopline_sdk/models/shop_crm_setting.py +24 -0
- shopline_sdk/models/shop_setting.py +10 -0
- shopline_sdk/models/staff.py +61 -0
- shopline_sdk/models/staff_performance.py +9 -0
- shopline_sdk/models/start_date_param.py +10 -0
- shopline_sdk/models/status.py +11 -0
- shopline_sdk/models/stock.py +12 -0
- shopline_sdk/models/store_credit.py +50 -0
- shopline_sdk/models/store_credit_fulfillment.py +27 -0
- shopline_sdk/models/storefront_o_auth_application.py +18 -0
- shopline_sdk/models/storefront_o_auth_applications.py +12 -0
- shopline_sdk/models/storefront_token.py +26 -0
- shopline_sdk/models/storefront_token_merchant.py +17 -0
- shopline_sdk/models/storefront_token_staff.py +15 -0
- shopline_sdk/models/storefront_tokens.py +12 -0
- shopline_sdk/models/supplier.py +24 -0
- shopline_sdk/models/tag.py +16 -0
- shopline_sdk/models/taggable.py +9 -0
- shopline_sdk/models/tax.py +57 -0
- shopline_sdk/models/tax_info.py +22 -0
- shopline_sdk/models/tax_region.py +20 -0
- shopline_sdk/models/tax_setting.py +10 -0
- shopline_sdk/models/theme.py +44 -0
- shopline_sdk/models/theme_schema.py +19 -0
- shopline_sdk/models/theme_setting.py +16 -0
- shopline_sdk/models/third_party_ads_setting.py +38 -0
- shopline_sdk/models/token_scopes.py +10 -0
- shopline_sdk/models/top_products_analytics.py +19 -0
- shopline_sdk/models/top_products_analytics_record.py +30 -0
- shopline_sdk/models/top_products_analytics_record_variation.py +34 -0
- shopline_sdk/models/total_sessions_analytics.py +35 -0
- shopline_sdk/models/total_views_analytics.py +29 -0
- shopline_sdk/models/transaction.py +65 -0
- shopline_sdk/models/translatable.py +28 -0
- shopline_sdk/models/translatable_array.py +28 -0
- shopline_sdk/models/unauthorized_error.py +14 -0
- shopline_sdk/models/unprocessable_entity_error.py +16 -0
- shopline_sdk/models/update_addon_product_body.py +36 -0
- shopline_sdk/models/update_agent_body.py +15 -0
- shopline_sdk/models/update_app_metafield_body.py +14 -0
- shopline_sdk/models/update_category_body.py +28 -0
- shopline_sdk/models/update_channel_price_body.py +21 -0
- shopline_sdk/models/update_customer_body.py +62 -0
- shopline_sdk/models/update_customer_group_activity_body.py +22 -0
- shopline_sdk/models/update_event_tracker_body.py +27 -0
- shopline_sdk/models/update_flash_price_campaign_body.py +22 -0
- shopline_sdk/models/update_gift_body.py +20 -0
- shopline_sdk/models/update_lock_inventory_body.py +21 -0
- shopline_sdk/models/update_metafield_body.py +14 -0
- shopline_sdk/models/update_product_body.py +66 -0
- shopline_sdk/models/update_product_feed_setting_body.py +27 -0
- shopline_sdk/models/update_product_review_comment_body.py +18 -0
- shopline_sdk/models/update_product_variation_body.py +34 -0
- shopline_sdk/models/update_promotion_body.py +71 -0
- shopline_sdk/models/update_return_order_body.py +17 -0
- shopline_sdk/models/update_webhook_body.py +14 -0
- shopline_sdk/models/user_coupon.py +12 -0
- shopline_sdk/models/user_coupons.py +14 -0
- shopline_sdk/models/user_credit_rule.py +40 -0
- shopline_sdk/models/users_setting.py +83 -0
- shopline_sdk/models/utm_data.py +20 -0
- shopline_sdk/models/warehouse.py +14 -0
- shopline_sdk/models/warehouses_cursor_based.py +17 -0
- shopline_sdk/models/webhook.py +23 -0
- shopline_sdk/models/webhooks.py +14 -0
- shopline_sdk/models/wish_list_item.py +41 -0
- shopline_sdk/models/wish_list_items.py +15 -0
- shopline_sdk_python-0.1.0.dist-info/METADATA +265 -0
- shopline_sdk_python-0.1.0.dist-info/RECORD +638 -0
- shopline_sdk_python-0.1.0.dist-info/WHEEL +5 -0
- shopline_sdk_python-0.1.0.dist-info/licenses/LICENSE +674 -0
- shopline_sdk_python-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,610 @@
|
|
|
1
|
+
"""Shopline API 数据模型"""
|
|
2
|
+
|
|
3
|
+
from .addon_product import AddonProduct
|
|
4
|
+
from .addon_products import AddonProducts
|
|
5
|
+
from .addon_products_cursor_based import AddonProductsCursorBased
|
|
6
|
+
from .address_node import AddressNode
|
|
7
|
+
from .address_nodes import AddressNodes
|
|
8
|
+
from .address_preference import AddressPreference
|
|
9
|
+
from .address_preference_layout_data import AddressPreferenceLayoutData
|
|
10
|
+
from .address_preferences import AddressPreferences
|
|
11
|
+
from .affiliate import Affiliate
|
|
12
|
+
from .affiliate_campaign import AffiliateCampaign
|
|
13
|
+
from .affiliate_campaign_order import AffiliateCampaignOrder
|
|
14
|
+
from .affiliate_campaign_orders import AffiliateCampaignOrders
|
|
15
|
+
from .affiliate_campaigns import AffiliateCampaigns
|
|
16
|
+
from .agent import Agent
|
|
17
|
+
from .agent_work_log import AgentWorkLog
|
|
18
|
+
from .agent_work_logs import AgentWorkLogs
|
|
19
|
+
from .agents import Agents
|
|
20
|
+
from .analytics import Analytics
|
|
21
|
+
from .app_metafield_value import AppMetafieldValue
|
|
22
|
+
from .app_setting import AppSetting
|
|
23
|
+
from .bad_request_error import BadRequestError
|
|
24
|
+
from .bulk_delete_metafield_body import BulkDeleteMetafieldBody
|
|
25
|
+
from .bulk_update_app_metafield_body import BulkUpdateAppMetafieldBody
|
|
26
|
+
from .bulk_update_metafield_body import BulkUpdateMetafieldBody
|
|
27
|
+
from .campaign_product import CampaignProduct
|
|
28
|
+
from .cart import Cart
|
|
29
|
+
from .cart_delivery import CartDelivery
|
|
30
|
+
from .cart_item import CartItem
|
|
31
|
+
from .cart_product import CartProduct
|
|
32
|
+
from .cart_product_variation import CartProductVariation
|
|
33
|
+
from .cart_promotion import CartPromotion
|
|
34
|
+
from .categories import Categories
|
|
35
|
+
from .categories_cursor_based import CategoriesCursorBased
|
|
36
|
+
from .category import Category
|
|
37
|
+
from .category_layout import CategoryLayout
|
|
38
|
+
from .change_payment_method_response import ChangePaymentMethodResponse
|
|
39
|
+
from .channel import Channel
|
|
40
|
+
from .channels import Channels
|
|
41
|
+
from .checkout_setting import CheckoutSetting
|
|
42
|
+
from .corporate_info import CorporateInfo
|
|
43
|
+
from .coupon_item import CouponItem
|
|
44
|
+
from .create_agent_body import CreateAgentBody
|
|
45
|
+
from .create_agent_work_log_request_body import CreateAgentWorkLogRequestBody
|
|
46
|
+
from .create_app_metafield_body import CreateAppMetafieldBody
|
|
47
|
+
from .create_bulk_operation_body import CreateBulkOperationBody
|
|
48
|
+
from .create_category_body import CreateCategoryBody
|
|
49
|
+
from .create_channel_price_body import CreateChannelPriceBody
|
|
50
|
+
from .create_customer_body import CreateCustomerBody
|
|
51
|
+
from .create_customer_group_activity_body import CreateCustomerGroupActivityBody
|
|
52
|
+
from .create_delivery_option_body import CreateDeliveryOptionBody
|
|
53
|
+
from .create_event_tracker_body import CreateEventTrackerBody
|
|
54
|
+
from .create_flash_price_campaign_body import CreateFlashPriceCampaignBody
|
|
55
|
+
from .create_metafield_body import CreateMetafieldBody
|
|
56
|
+
from .create_metafield_definition_body import CreateMetafieldDefinitionBody
|
|
57
|
+
from .create_page_body import CreatePageBody
|
|
58
|
+
from .create_product_body import CreateProductBody
|
|
59
|
+
from .create_product_feed_setting_body import CreateProductFeedSettingBody
|
|
60
|
+
from .create_product_review_comment_body import CreateProductReviewCommentBody
|
|
61
|
+
from .create_product_variation_body import CreateProductVariationBody
|
|
62
|
+
from .create_promotion_body import CreatePromotionBody
|
|
63
|
+
from .create_return_order_body import CreateReturnOrderBody
|
|
64
|
+
from .create_sub_res_app_metafield_body import CreateSubResAppMetafieldBody
|
|
65
|
+
from .create_sub_res_metafield_body import CreateSubResMetafieldBody
|
|
66
|
+
from .create_user_coupon_body import CreateUserCouponBody
|
|
67
|
+
from .create_webhook_body import CreateWebhookBody
|
|
68
|
+
from .create_wish_list_item_body import CreateWishListItemBody
|
|
69
|
+
from .cursor_based_paginatable import CursorBasedPaginatable
|
|
70
|
+
from .custom_field import CustomField
|
|
71
|
+
from .customer import Customer
|
|
72
|
+
from .customer_coupon_promotions import CustomerCouponPromotions
|
|
73
|
+
from .customer_group import CustomerGroup
|
|
74
|
+
from .customer_group_activity import CustomerGroupActivity
|
|
75
|
+
from .customer_groups import CustomerGroups
|
|
76
|
+
from .customer_promotion import CustomerPromotion
|
|
77
|
+
from .customer_viewed_categories import CustomerViewedCategories
|
|
78
|
+
from .customer_viewed_category import CustomerViewedCategory
|
|
79
|
+
from .customer_viewed_product import CustomerViewedProduct
|
|
80
|
+
from .customer_viewed_products import CustomerViewedProducts
|
|
81
|
+
from .delivery_option import DeliveryOption
|
|
82
|
+
from .delivery_rate import DeliveryRate
|
|
83
|
+
from .delivery_time_slot import DeliveryTimeSlot
|
|
84
|
+
from .domains_setting import DomainsSetting
|
|
85
|
+
from .domains_setting_webmaster import DomainsSettingWebmaster
|
|
86
|
+
from .entity_render_error import EntityRenderError
|
|
87
|
+
from .event_tracker import EventTracker
|
|
88
|
+
from .event_trackers import EventTrackers
|
|
89
|
+
from .extend_promotion import ExtendPromotion
|
|
90
|
+
from .facebook_business_extension_domains_entity import FacebookBusinessExtensionDomainsEntity
|
|
91
|
+
from .filter_tag import FilterTag
|
|
92
|
+
from .flash_price_campaign import FlashPriceCampaign
|
|
93
|
+
from .flash_price_campaigns import FlashPriceCampaigns
|
|
94
|
+
from .forbidden_error import ForbiddenError
|
|
95
|
+
from .gift import Gift
|
|
96
|
+
from .gifts import Gifts
|
|
97
|
+
from .gifts_cursor_based import GiftsCursorBased
|
|
98
|
+
from .global_section import GlobalSection
|
|
99
|
+
from .global_section_settings import GlobalSectionSettings
|
|
100
|
+
from .gross_amount_analytics import GrossAmountAnalytics
|
|
101
|
+
from .gross_orders_analytics import GrossOrdersAnalytics
|
|
102
|
+
from .individual_info import IndividualInfo
|
|
103
|
+
from .invoice import Invoice
|
|
104
|
+
from .job import Job
|
|
105
|
+
from .jobs import Jobs
|
|
106
|
+
from .layout_sections import LayoutSections
|
|
107
|
+
from .layouts_setting import LayoutsSetting
|
|
108
|
+
from .limit_exceeded_error import LimitExceededError
|
|
109
|
+
from .link import Link
|
|
110
|
+
from .lock_inventory import LockInventory
|
|
111
|
+
from .lock_inventory_count import LockInventoryCount
|
|
112
|
+
from .max_applicable_member_point import MaxApplicableMemberPoint
|
|
113
|
+
from .media import Media
|
|
114
|
+
from .media_upload_error import MediaUploadError
|
|
115
|
+
from .member_point import MemberPoint
|
|
116
|
+
from .member_point_fulfillment import MemberPointFulfillment
|
|
117
|
+
from .member_point_rule import MemberPointRule
|
|
118
|
+
from .member_point_rules import MemberPointRules
|
|
119
|
+
from .member_points import MemberPoints
|
|
120
|
+
from .member_registration_analytics import MemberRegistrationAnalytics
|
|
121
|
+
from .membership_info import MembershipInfo
|
|
122
|
+
from .membership_tier import MembershipTier
|
|
123
|
+
from .membership_tier_action_log import MembershipTierActionLog
|
|
124
|
+
from .membership_tier_action_logs import MembershipTierActionLogs
|
|
125
|
+
from .membership_tier_rule import MembershipTierRule
|
|
126
|
+
from .merchant import Merchant
|
|
127
|
+
from .merchant_kyc import MerchantKyc
|
|
128
|
+
from .merchant_tax import MerchantTax
|
|
129
|
+
from .metafield_definition import MetafieldDefinition
|
|
130
|
+
from .metafield_value import MetafieldValue
|
|
131
|
+
from .money import Money
|
|
132
|
+
from .multipass_linking import MultipassLinking
|
|
133
|
+
from .multipass_linkings import MultipassLinkings
|
|
134
|
+
from .multipass_secret import MultipassSecret
|
|
135
|
+
from .net_amount_analytics import NetAmountAnalytics
|
|
136
|
+
from .net_orders_analytics import NetOrdersAnalytics
|
|
137
|
+
from .not_found_error import NotFoundError
|
|
138
|
+
from .order import Order
|
|
139
|
+
from .order_action_log import OrderActionLog
|
|
140
|
+
from .order_action_logs import OrderActionLogs
|
|
141
|
+
from .order_agent import OrderAgent
|
|
142
|
+
from .order_campaign_item import OrderCampaignItem
|
|
143
|
+
from .order_comment import OrderComment
|
|
144
|
+
from .order_conversation import OrderConversation
|
|
145
|
+
from .order_conversations import OrderConversations
|
|
146
|
+
from .order_conversations_message import OrderConversationsMessage
|
|
147
|
+
from .order_conversations_messages import OrderConversationsMessages
|
|
148
|
+
from .order_customer_info import OrderCustomerInfo
|
|
149
|
+
from .order_delivery import OrderDelivery
|
|
150
|
+
from .order_delivery_address import OrderDeliveryAddress
|
|
151
|
+
from .order_delivery_data import OrderDeliveryData
|
|
152
|
+
from .order_inspect_item import OrderInspectItem
|
|
153
|
+
from .order_invoice import OrderInvoice
|
|
154
|
+
from .order_item import OrderItem
|
|
155
|
+
from .order_payment import OrderPayment
|
|
156
|
+
from .order_promotion_item import OrderPromotionItem
|
|
157
|
+
from .order_source import OrderSource
|
|
158
|
+
from .order_tag import OrderTag
|
|
159
|
+
from .order_transaction import OrderTransaction
|
|
160
|
+
from .orders_setting import OrdersSetting
|
|
161
|
+
from .page import Page
|
|
162
|
+
from .page_block_settings import PageBlockSettings
|
|
163
|
+
from .page_section import PageSection
|
|
164
|
+
from .page_section_schema import PageSectionSchema
|
|
165
|
+
from .page_section_settings import PageSectionSettings
|
|
166
|
+
from .page_sections import PageSections
|
|
167
|
+
from .paginatable import Paginatable
|
|
168
|
+
from .payment import Payment
|
|
169
|
+
from .payment_config_data import PaymentConfigData
|
|
170
|
+
from .payment_fee_item import PaymentFeeItem
|
|
171
|
+
from .payment_settlement import PaymentSettlement
|
|
172
|
+
from .payments_setting import PaymentsSetting
|
|
173
|
+
from .pos_payment import PosPayment
|
|
174
|
+
from .pos_setting import PosSetting
|
|
175
|
+
from .price_detail import PriceDetail
|
|
176
|
+
from .price_set import PriceSet
|
|
177
|
+
from .price_sets import PriceSets
|
|
178
|
+
from .product import Product
|
|
179
|
+
from .product_feed_setting import ProductFeedSetting
|
|
180
|
+
from .product_feed_settings import ProductFeedSettings
|
|
181
|
+
from .product_price_tier import ProductPriceTier
|
|
182
|
+
from .product_related_theme_settings import ProductRelatedThemeSettings
|
|
183
|
+
from .product_revenue import ProductRevenue
|
|
184
|
+
from .product_revenues import ProductRevenues
|
|
185
|
+
from .product_review import ProductReview
|
|
186
|
+
from .product_review_comment import ProductReviewComment
|
|
187
|
+
from .product_review_comments import ProductReviewComments
|
|
188
|
+
from .product_review_comments_cursor_based import ProductReviewCommentsCursorBased
|
|
189
|
+
from .product_review_setting import ProductReviewSetting
|
|
190
|
+
from .product_reviews import ProductReviews
|
|
191
|
+
from .product_stock import ProductStock
|
|
192
|
+
from .product_subscription import ProductSubscription
|
|
193
|
+
from .product_variation import ProductVariation
|
|
194
|
+
from .products_cursor_based import ProductsCursorBased
|
|
195
|
+
from .products_setting import ProductsSetting
|
|
196
|
+
from .promotion import Promotion
|
|
197
|
+
from .promotion_condition import PromotionCondition
|
|
198
|
+
from .promotion_excluded_hints import PromotionExcludedHints
|
|
199
|
+
from .promotions_setting import PromotionsSetting
|
|
200
|
+
from .purchase_order import PurchaseOrder
|
|
201
|
+
from .purchase_order_item import PurchaseOrderItem
|
|
202
|
+
from .purchase_orders import PurchaseOrders
|
|
203
|
+
from .quantity_update_not_allowed_error import QuantityUpdateNotAllowedError
|
|
204
|
+
from .return_order import ReturnOrder
|
|
205
|
+
from .return_order_delivery import ReturnOrderDelivery
|
|
206
|
+
from .return_order_delivery_address import ReturnOrderDeliveryAddress
|
|
207
|
+
from .return_order_delivery_data import ReturnOrderDeliveryData
|
|
208
|
+
from .return_order_item import ReturnOrderItem
|
|
209
|
+
from .return_order_payment import ReturnOrderPayment
|
|
210
|
+
from .return_order_promotion_item import ReturnOrderPromotionItem
|
|
211
|
+
from .return_order_ref_data import ReturnOrderRefData
|
|
212
|
+
from .return_orders import ReturnOrders
|
|
213
|
+
from .sc_conversation import SCConversation
|
|
214
|
+
from .sc_conversations import SCConversations
|
|
215
|
+
from .sc_conversations_message import SCConversationsMessage
|
|
216
|
+
from .sc_conversations_messages import SCConversationsMessages
|
|
217
|
+
from .sale_comment import SaleComment
|
|
218
|
+
from .sale_customer import SaleCustomer
|
|
219
|
+
from .sale_product import SaleProduct
|
|
220
|
+
from .save_draft_body import SaveDraftBody
|
|
221
|
+
from .search_products_body import SearchProductsBody
|
|
222
|
+
from .server_error import ServerError
|
|
223
|
+
from .service_unavailable_error import ServiceUnavailableError
|
|
224
|
+
from .settings import Settings
|
|
225
|
+
from .settlement_terminal_list import SettlementTerminalList
|
|
226
|
+
from .shop_conversation import ShopConversation
|
|
227
|
+
from .shop_conversations import ShopConversations
|
|
228
|
+
from .shop_conversations_message import ShopConversationsMessage
|
|
229
|
+
from .shop_conversations_messages import ShopConversationsMessages
|
|
230
|
+
from .shop_crm_setting import ShopCrmSetting
|
|
231
|
+
from .shop_setting import ShopSetting
|
|
232
|
+
from .staff import Staff
|
|
233
|
+
from .staff_performance import StaffPerformance
|
|
234
|
+
from .stock import Stock
|
|
235
|
+
from .store_credit import StoreCredit
|
|
236
|
+
from .store_credit_fulfillment import StoreCreditFulfillment
|
|
237
|
+
from .storefront_o_auth_application import StorefrontOAuthApplication
|
|
238
|
+
from .storefront_o_auth_applications import StorefrontOAuthApplications
|
|
239
|
+
from .storefront_token import StorefrontToken
|
|
240
|
+
from .storefront_token_merchant import StorefrontTokenMerchant
|
|
241
|
+
from .storefront_token_staff import StorefrontTokenStaff
|
|
242
|
+
from .storefront_tokens import StorefrontTokens
|
|
243
|
+
from .supplier import Supplier
|
|
244
|
+
from .tag import Tag
|
|
245
|
+
from .taggable import Taggable
|
|
246
|
+
from .tax import Tax
|
|
247
|
+
from .tax_info import TaxInfo
|
|
248
|
+
from .tax_region import TaxRegion
|
|
249
|
+
from .tax_setting import TaxSetting
|
|
250
|
+
from .theme import Theme
|
|
251
|
+
from .theme_schema import ThemeSchema
|
|
252
|
+
from .theme_setting import ThemeSetting
|
|
253
|
+
from .third_party_ads_setting import ThirdPartyAdsSetting
|
|
254
|
+
from .token_scopes import TokenScopes
|
|
255
|
+
from .top_products_analytics import TopProductsAnalytics
|
|
256
|
+
from .top_products_analytics_record import TopProductsAnalyticsRecord
|
|
257
|
+
from .top_products_analytics_record_variation import TopProductsAnalyticsRecordVariation
|
|
258
|
+
from .total_sessions_analytics import TotalSessionsAnalytics
|
|
259
|
+
from .total_views_analytics import TotalViewsAnalytics
|
|
260
|
+
from .transaction import Transaction
|
|
261
|
+
from .translatable import Translatable
|
|
262
|
+
from .translatable_array import TranslatableArray
|
|
263
|
+
from .unauthorized_error import UnauthorizedError
|
|
264
|
+
from .unprocessable_entity_error import UnprocessableEntityError
|
|
265
|
+
from .update_addon_product_body import UpdateAddonProductBody
|
|
266
|
+
from .update_agent_body import UpdateAgentBody
|
|
267
|
+
from .update_app_metafield_body import UpdateAppMetafieldBody
|
|
268
|
+
from .update_category_body import UpdateCategoryBody
|
|
269
|
+
from .update_channel_price_body import UpdateChannelPriceBody
|
|
270
|
+
from .update_customer_body import UpdateCustomerBody
|
|
271
|
+
from .update_customer_group_activity_body import UpdateCustomerGroupActivityBody
|
|
272
|
+
from .update_event_tracker_body import UpdateEventTrackerBody
|
|
273
|
+
from .update_flash_price_campaign_body import UpdateFlashPriceCampaignBody
|
|
274
|
+
from .update_gift_body import UpdateGiftBody
|
|
275
|
+
from .update_lock_inventory_body import UpdateLockInventoryBody
|
|
276
|
+
from .update_metafield_body import UpdateMetafieldBody
|
|
277
|
+
from .update_product_body import UpdateProductBody
|
|
278
|
+
from .update_product_feed_setting_body import UpdateProductFeedSettingBody
|
|
279
|
+
from .update_product_review_comment_body import UpdateProductReviewCommentBody
|
|
280
|
+
from .update_product_variation_body import UpdateProductVariationBody
|
|
281
|
+
from .update_promotion_body import UpdatePromotionBody
|
|
282
|
+
from .update_return_order_body import UpdateReturnOrderBody
|
|
283
|
+
from .update_webhook_body import UpdateWebhookBody
|
|
284
|
+
from .user_coupon import UserCoupon
|
|
285
|
+
from .user_coupons import UserCoupons
|
|
286
|
+
from .user_credit_rule import UserCreditRule
|
|
287
|
+
from .users_setting import UsersSetting
|
|
288
|
+
from .utm_data import UtmData
|
|
289
|
+
from .warehouse import Warehouse
|
|
290
|
+
from .warehouses_cursor_based import WarehousesCursorBased
|
|
291
|
+
from .webhook import Webhook
|
|
292
|
+
from .webhooks import Webhooks
|
|
293
|
+
from .wish_list_item import WishListItem
|
|
294
|
+
from .wish_list_items import WishListItems
|
|
295
|
+
from .bearer_auth import bearerAuth
|
|
296
|
+
from .channel_param import channelParam
|
|
297
|
+
from .end_date_param import endDateParam
|
|
298
|
+
from .interval_param import intervalParam
|
|
299
|
+
from .is_real_time_param import isRealTimeParam
|
|
300
|
+
from .pagination import pagination
|
|
301
|
+
from .product_ids_param import productIdsParam
|
|
302
|
+
from .retail_status import retail_status
|
|
303
|
+
from .start_date_param import startDateParam
|
|
304
|
+
from .status import status
|
|
305
|
+
|
|
306
|
+
# 导出所有模型
|
|
307
|
+
__all__ = [
|
|
308
|
+
"AddonProduct",
|
|
309
|
+
"AddonProducts",
|
|
310
|
+
"AddonProductsCursorBased",
|
|
311
|
+
"AddressNode",
|
|
312
|
+
"AddressNodes",
|
|
313
|
+
"AddressPreference",
|
|
314
|
+
"AddressPreferenceLayoutData",
|
|
315
|
+
"AddressPreferences",
|
|
316
|
+
"Affiliate",
|
|
317
|
+
"AffiliateCampaign",
|
|
318
|
+
"AffiliateCampaignOrder",
|
|
319
|
+
"AffiliateCampaignOrders",
|
|
320
|
+
"AffiliateCampaigns",
|
|
321
|
+
"Agent",
|
|
322
|
+
"AgentWorkLog",
|
|
323
|
+
"AgentWorkLogs",
|
|
324
|
+
"Agents",
|
|
325
|
+
"Analytics",
|
|
326
|
+
"AppMetafieldValue",
|
|
327
|
+
"AppSetting",
|
|
328
|
+
"BadRequestError",
|
|
329
|
+
"BulkDeleteMetafieldBody",
|
|
330
|
+
"BulkUpdateAppMetafieldBody",
|
|
331
|
+
"BulkUpdateMetafieldBody",
|
|
332
|
+
"CampaignProduct",
|
|
333
|
+
"Cart",
|
|
334
|
+
"CartDelivery",
|
|
335
|
+
"CartItem",
|
|
336
|
+
"CartProduct",
|
|
337
|
+
"CartProductVariation",
|
|
338
|
+
"CartPromotion",
|
|
339
|
+
"Categories",
|
|
340
|
+
"CategoriesCursorBased",
|
|
341
|
+
"Category",
|
|
342
|
+
"CategoryLayout",
|
|
343
|
+
"ChangePaymentMethodResponse",
|
|
344
|
+
"Channel",
|
|
345
|
+
"Channels",
|
|
346
|
+
"CheckoutSetting",
|
|
347
|
+
"CorporateInfo",
|
|
348
|
+
"CouponItem",
|
|
349
|
+
"CreateAgentBody",
|
|
350
|
+
"CreateAgentWorkLogRequestBody",
|
|
351
|
+
"CreateAppMetafieldBody",
|
|
352
|
+
"CreateBulkOperationBody",
|
|
353
|
+
"CreateCategoryBody",
|
|
354
|
+
"CreateChannelPriceBody",
|
|
355
|
+
"CreateCustomerBody",
|
|
356
|
+
"CreateCustomerGroupActivityBody",
|
|
357
|
+
"CreateDeliveryOptionBody",
|
|
358
|
+
"CreateEventTrackerBody",
|
|
359
|
+
"CreateFlashPriceCampaignBody",
|
|
360
|
+
"CreateMetafieldBody",
|
|
361
|
+
"CreateMetafieldDefinitionBody",
|
|
362
|
+
"CreatePageBody",
|
|
363
|
+
"CreateProductBody",
|
|
364
|
+
"CreateProductFeedSettingBody",
|
|
365
|
+
"CreateProductReviewCommentBody",
|
|
366
|
+
"CreateProductVariationBody",
|
|
367
|
+
"CreatePromotionBody",
|
|
368
|
+
"CreateReturnOrderBody",
|
|
369
|
+
"CreateSubResAppMetafieldBody",
|
|
370
|
+
"CreateSubResMetafieldBody",
|
|
371
|
+
"CreateUserCouponBody",
|
|
372
|
+
"CreateWebhookBody",
|
|
373
|
+
"CreateWishListItemBody",
|
|
374
|
+
"CursorBasedPaginatable",
|
|
375
|
+
"CustomField",
|
|
376
|
+
"Customer",
|
|
377
|
+
"CustomerCouponPromotions",
|
|
378
|
+
"CustomerGroup",
|
|
379
|
+
"CustomerGroupActivity",
|
|
380
|
+
"CustomerGroups",
|
|
381
|
+
"CustomerPromotion",
|
|
382
|
+
"CustomerViewedCategories",
|
|
383
|
+
"CustomerViewedCategory",
|
|
384
|
+
"CustomerViewedProduct",
|
|
385
|
+
"CustomerViewedProducts",
|
|
386
|
+
"DeliveryOption",
|
|
387
|
+
"DeliveryRate",
|
|
388
|
+
"DeliveryTimeSlot",
|
|
389
|
+
"DomainsSetting",
|
|
390
|
+
"DomainsSettingWebmaster",
|
|
391
|
+
"EntityRenderError",
|
|
392
|
+
"EventTracker",
|
|
393
|
+
"EventTrackers",
|
|
394
|
+
"ExtendPromotion",
|
|
395
|
+
"FacebookBusinessExtensionDomainsEntity",
|
|
396
|
+
"FilterTag",
|
|
397
|
+
"FlashPriceCampaign",
|
|
398
|
+
"FlashPriceCampaigns",
|
|
399
|
+
"ForbiddenError",
|
|
400
|
+
"Gift",
|
|
401
|
+
"Gifts",
|
|
402
|
+
"GiftsCursorBased",
|
|
403
|
+
"GlobalSection",
|
|
404
|
+
"GlobalSectionSettings",
|
|
405
|
+
"GrossAmountAnalytics",
|
|
406
|
+
"GrossOrdersAnalytics",
|
|
407
|
+
"IndividualInfo",
|
|
408
|
+
"Invoice",
|
|
409
|
+
"Job",
|
|
410
|
+
"Jobs",
|
|
411
|
+
"LayoutSections",
|
|
412
|
+
"LayoutsSetting",
|
|
413
|
+
"LimitExceededError",
|
|
414
|
+
"Link",
|
|
415
|
+
"LockInventory",
|
|
416
|
+
"LockInventoryCount",
|
|
417
|
+
"MaxApplicableMemberPoint",
|
|
418
|
+
"Media",
|
|
419
|
+
"MediaUploadError",
|
|
420
|
+
"MemberPoint",
|
|
421
|
+
"MemberPointFulfillment",
|
|
422
|
+
"MemberPointRule",
|
|
423
|
+
"MemberPointRules",
|
|
424
|
+
"MemberPoints",
|
|
425
|
+
"MemberRegistrationAnalytics",
|
|
426
|
+
"MembershipInfo",
|
|
427
|
+
"MembershipTier",
|
|
428
|
+
"MembershipTierActionLog",
|
|
429
|
+
"MembershipTierActionLogs",
|
|
430
|
+
"MembershipTierRule",
|
|
431
|
+
"Merchant",
|
|
432
|
+
"MerchantKyc",
|
|
433
|
+
"MerchantTax",
|
|
434
|
+
"MetafieldDefinition",
|
|
435
|
+
"MetafieldValue",
|
|
436
|
+
"Money",
|
|
437
|
+
"MultipassLinking",
|
|
438
|
+
"MultipassLinkings",
|
|
439
|
+
"MultipassSecret",
|
|
440
|
+
"NetAmountAnalytics",
|
|
441
|
+
"NetOrdersAnalytics",
|
|
442
|
+
"NotFoundError",
|
|
443
|
+
"Order",
|
|
444
|
+
"OrderActionLog",
|
|
445
|
+
"OrderActionLogs",
|
|
446
|
+
"OrderAgent",
|
|
447
|
+
"OrderCampaignItem",
|
|
448
|
+
"OrderComment",
|
|
449
|
+
"OrderConversation",
|
|
450
|
+
"OrderConversations",
|
|
451
|
+
"OrderConversationsMessage",
|
|
452
|
+
"OrderConversationsMessages",
|
|
453
|
+
"OrderCustomerInfo",
|
|
454
|
+
"OrderDelivery",
|
|
455
|
+
"OrderDeliveryAddress",
|
|
456
|
+
"OrderDeliveryData",
|
|
457
|
+
"OrderInspectItem",
|
|
458
|
+
"OrderInvoice",
|
|
459
|
+
"OrderItem",
|
|
460
|
+
"OrderPayment",
|
|
461
|
+
"OrderPromotionItem",
|
|
462
|
+
"OrderSource",
|
|
463
|
+
"OrderTag",
|
|
464
|
+
"OrderTransaction",
|
|
465
|
+
"OrdersSetting",
|
|
466
|
+
"Page",
|
|
467
|
+
"PageBlockSettings",
|
|
468
|
+
"PageSection",
|
|
469
|
+
"PageSectionSchema",
|
|
470
|
+
"PageSectionSettings",
|
|
471
|
+
"PageSections",
|
|
472
|
+
"Paginatable",
|
|
473
|
+
"Payment",
|
|
474
|
+
"PaymentConfigData",
|
|
475
|
+
"PaymentFeeItem",
|
|
476
|
+
"PaymentSettlement",
|
|
477
|
+
"PaymentsSetting",
|
|
478
|
+
"PosPayment",
|
|
479
|
+
"PosSetting",
|
|
480
|
+
"PriceDetail",
|
|
481
|
+
"PriceSet",
|
|
482
|
+
"PriceSets",
|
|
483
|
+
"Product",
|
|
484
|
+
"ProductFeedSetting",
|
|
485
|
+
"ProductFeedSettings",
|
|
486
|
+
"ProductPriceTier",
|
|
487
|
+
"ProductRelatedThemeSettings",
|
|
488
|
+
"ProductRevenue",
|
|
489
|
+
"ProductRevenues",
|
|
490
|
+
"ProductReview",
|
|
491
|
+
"ProductReviewComment",
|
|
492
|
+
"ProductReviewComments",
|
|
493
|
+
"ProductReviewCommentsCursorBased",
|
|
494
|
+
"ProductReviewSetting",
|
|
495
|
+
"ProductReviews",
|
|
496
|
+
"ProductStock",
|
|
497
|
+
"ProductSubscription",
|
|
498
|
+
"ProductVariation",
|
|
499
|
+
"ProductsCursorBased",
|
|
500
|
+
"ProductsSetting",
|
|
501
|
+
"Promotion",
|
|
502
|
+
"PromotionCondition",
|
|
503
|
+
"PromotionExcludedHints",
|
|
504
|
+
"PromotionsSetting",
|
|
505
|
+
"PurchaseOrder",
|
|
506
|
+
"PurchaseOrderItem",
|
|
507
|
+
"PurchaseOrders",
|
|
508
|
+
"QuantityUpdateNotAllowedError",
|
|
509
|
+
"ReturnOrder",
|
|
510
|
+
"ReturnOrderDelivery",
|
|
511
|
+
"ReturnOrderDeliveryAddress",
|
|
512
|
+
"ReturnOrderDeliveryData",
|
|
513
|
+
"ReturnOrderItem",
|
|
514
|
+
"ReturnOrderPayment",
|
|
515
|
+
"ReturnOrderPromotionItem",
|
|
516
|
+
"ReturnOrderRefData",
|
|
517
|
+
"ReturnOrders",
|
|
518
|
+
"SCConversation",
|
|
519
|
+
"SCConversations",
|
|
520
|
+
"SCConversationsMessage",
|
|
521
|
+
"SCConversationsMessages",
|
|
522
|
+
"SaleComment",
|
|
523
|
+
"SaleCustomer",
|
|
524
|
+
"SaleProduct",
|
|
525
|
+
"SaveDraftBody",
|
|
526
|
+
"SearchProductsBody",
|
|
527
|
+
"ServerError",
|
|
528
|
+
"ServiceUnavailableError",
|
|
529
|
+
"Settings",
|
|
530
|
+
"SettlementTerminalList",
|
|
531
|
+
"ShopConversation",
|
|
532
|
+
"ShopConversations",
|
|
533
|
+
"ShopConversationsMessage",
|
|
534
|
+
"ShopConversationsMessages",
|
|
535
|
+
"ShopCrmSetting",
|
|
536
|
+
"ShopSetting",
|
|
537
|
+
"Staff",
|
|
538
|
+
"StaffPerformance",
|
|
539
|
+
"Stock",
|
|
540
|
+
"StoreCredit",
|
|
541
|
+
"StoreCreditFulfillment",
|
|
542
|
+
"StorefrontOAuthApplication",
|
|
543
|
+
"StorefrontOAuthApplications",
|
|
544
|
+
"StorefrontToken",
|
|
545
|
+
"StorefrontTokenMerchant",
|
|
546
|
+
"StorefrontTokenStaff",
|
|
547
|
+
"StorefrontTokens",
|
|
548
|
+
"Supplier",
|
|
549
|
+
"Tag",
|
|
550
|
+
"Taggable",
|
|
551
|
+
"Tax",
|
|
552
|
+
"TaxInfo",
|
|
553
|
+
"TaxRegion",
|
|
554
|
+
"TaxSetting",
|
|
555
|
+
"Theme",
|
|
556
|
+
"ThemeSchema",
|
|
557
|
+
"ThemeSetting",
|
|
558
|
+
"ThirdPartyAdsSetting",
|
|
559
|
+
"TokenScopes",
|
|
560
|
+
"TopProductsAnalytics",
|
|
561
|
+
"TopProductsAnalyticsRecord",
|
|
562
|
+
"TopProductsAnalyticsRecordVariation",
|
|
563
|
+
"TotalSessionsAnalytics",
|
|
564
|
+
"TotalViewsAnalytics",
|
|
565
|
+
"Transaction",
|
|
566
|
+
"Translatable",
|
|
567
|
+
"TranslatableArray",
|
|
568
|
+
"UnauthorizedError",
|
|
569
|
+
"UnprocessableEntityError",
|
|
570
|
+
"UpdateAddonProductBody",
|
|
571
|
+
"UpdateAgentBody",
|
|
572
|
+
"UpdateAppMetafieldBody",
|
|
573
|
+
"UpdateCategoryBody",
|
|
574
|
+
"UpdateChannelPriceBody",
|
|
575
|
+
"UpdateCustomerBody",
|
|
576
|
+
"UpdateCustomerGroupActivityBody",
|
|
577
|
+
"UpdateEventTrackerBody",
|
|
578
|
+
"UpdateFlashPriceCampaignBody",
|
|
579
|
+
"UpdateGiftBody",
|
|
580
|
+
"UpdateLockInventoryBody",
|
|
581
|
+
"UpdateMetafieldBody",
|
|
582
|
+
"UpdateProductBody",
|
|
583
|
+
"UpdateProductFeedSettingBody",
|
|
584
|
+
"UpdateProductReviewCommentBody",
|
|
585
|
+
"UpdateProductVariationBody",
|
|
586
|
+
"UpdatePromotionBody",
|
|
587
|
+
"UpdateReturnOrderBody",
|
|
588
|
+
"UpdateWebhookBody",
|
|
589
|
+
"UserCoupon",
|
|
590
|
+
"UserCoupons",
|
|
591
|
+
"UserCreditRule",
|
|
592
|
+
"UsersSetting",
|
|
593
|
+
"UtmData",
|
|
594
|
+
"Warehouse",
|
|
595
|
+
"WarehousesCursorBased",
|
|
596
|
+
"Webhook",
|
|
597
|
+
"Webhooks",
|
|
598
|
+
"WishListItem",
|
|
599
|
+
"WishListItems",
|
|
600
|
+
"bearerAuth",
|
|
601
|
+
"channelParam",
|
|
602
|
+
"endDateParam",
|
|
603
|
+
"intervalParam",
|
|
604
|
+
"isRealTimeParam",
|
|
605
|
+
"pagination",
|
|
606
|
+
"productIdsParam",
|
|
607
|
+
"retail_status",
|
|
608
|
+
"startDateParam",
|
|
609
|
+
"status",
|
|
610
|
+
]
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"""Shopline API 数据模型 - AddonProduct"""
|
|
2
|
+
|
|
3
|
+
from typing import Any, Dict, List, Optional, Union
|
|
4
|
+
from pydantic import BaseModel, Field
|
|
5
|
+
from typing_extensions import Literal
|
|
6
|
+
|
|
7
|
+
# 导入相关模型
|
|
8
|
+
from .media import Media
|
|
9
|
+
from .money import Money
|
|
10
|
+
from .translatable import Translatable
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class PromotionsItem(BaseModel):
|
|
15
|
+
"""Item model for promotions"""
|
|
16
|
+
id: Optional[str] = None
|
|
17
|
+
"""Promotion ID 優惠活動ID"""
|
|
18
|
+
discounted_price: Optional[Money] = None
|
|
19
|
+
start_at: Optional[str] = None
|
|
20
|
+
"""Promotion start time 活動開始時間"""
|
|
21
|
+
end_at: Optional[str] = None
|
|
22
|
+
"""Promotion end time 活動結束時間 - null = no end date 永不過期"""
|
|
23
|
+
conditions: Optional[List[Dict[str, Any]]] = None
|
|
24
|
+
"""本階層活動生效條件"""
|
|
25
|
+
|
|
26
|
+
class AddonProduct(BaseModel):
|
|
27
|
+
id: Optional[str] = None
|
|
28
|
+
"""Add-on Product‘s ID 加購品ID"""
|
|
29
|
+
status: Optional[Literal['active', 'draft']] = None
|
|
30
|
+
"""Add-on Product's Status 加購品狀態 - Status: active上架 draft 下架"""
|
|
31
|
+
title_translations: Optional[Translatable] = None
|
|
32
|
+
price: Optional[float] = None
|
|
33
|
+
"""Addon Product Price 加購品價格"""
|
|
34
|
+
weight: Optional[float] = None
|
|
35
|
+
"""Addon Product's Weight (kg) 加購品重量 (公斤)"""
|
|
36
|
+
quantity: Optional[float] = None
|
|
37
|
+
"""Current Quantity 加購品目前庫存"""
|
|
38
|
+
unlimited_quantity: Optional[bool] = None
|
|
39
|
+
"""Unlimited quantity or not. 加購品數量是否無限 - true: unlimited quantity false: limited quantity"""
|
|
40
|
+
medias: Optional[Media] = None
|
|
41
|
+
sku: Optional[str] = None
|
|
42
|
+
"""Stock Keeping Unit 加購品貨號"""
|
|
43
|
+
tax_type: Optional[str] = None
|
|
44
|
+
"""Tax Type 國內稅項"""
|
|
45
|
+
oversea_tax_type: Optional[str] = None
|
|
46
|
+
"""Oversea Tax Type 海外稅項"""
|
|
47
|
+
created_at: Optional[str] = None
|
|
48
|
+
"""Created Time 加購品創造時間"""
|
|
49
|
+
promotions: Optional[List[PromotionsItem]] = None
|
|
50
|
+
"""Promotions 加購活動 Only provided when include_fields contains 'promotions' 僅於include_fields傳入 'promotions' 時提供"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""Shopline API 数据模型 - AddonProducts"""
|
|
2
|
+
|
|
3
|
+
from typing import Any, Dict, List, Optional, Union
|
|
4
|
+
from pydantic import BaseModel, Field
|
|
5
|
+
from typing_extensions import Literal
|
|
6
|
+
|
|
7
|
+
# 导入相关模型
|
|
8
|
+
from .addon_product import AddonProduct
|
|
9
|
+
from .paginatable import Paginatable
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class AddonProducts(BaseModel):
|
|
13
|
+
pagination: Optional[Paginatable] = None
|
|
14
|
+
items: Optional[List[AddonProduct]] = None
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""Shopline API 数据模型 - AddonProductsCursorBased"""
|
|
2
|
+
|
|
3
|
+
from typing import Any, Dict, List, Optional, Union
|
|
4
|
+
from pydantic import BaseModel, Field
|
|
5
|
+
from typing_extensions import Literal
|
|
6
|
+
|
|
7
|
+
# 导入相关模型
|
|
8
|
+
from .addon_product import AddonProduct
|
|
9
|
+
from .cursor_based_paginatable import CursorBasedPaginatable
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class AddonProductsCursorBased(BaseModel):
|
|
13
|
+
last_id: Optional[str] = None
|
|
14
|
+
limit: Optional[int] = None
|
|
15
|
+
items: Optional[List[AddonProduct]] = None
|