Skip to content

Commit

Permalink
add docs
Browse files Browse the repository at this point in the history
  • Loading branch information
xxl4 committed Dec 9, 2024
1 parent dfe9ee5 commit 6422944
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions src/Docs/V1/Shopify/Models/Products/ProductCustomConfiguration.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<?php
namespace NexaMerchant\Shopify\Docs\V1\Shopify\Models\Products;

/**
* @OA\Schema(
* title="ProductCustomConfiguration",
* description="Product custom configuration",
* required={"id", "name"}
* )
*/
class ProductCustomConfiguration {
/**
* @OA\Property(
* title="checkoutItems",
* description="Product checkout items configuration",
* format="array",
* )
*
* @var array
*/
private $checkoutItems;

/**
* @OA\Property(
* title="sellPoints",
* description="Product sell points configuration",
* format="array",
* )
*
* @var array
*/
private $sell_points;

/**
* @OA\Property(
* title="pcBanner",
* description="Product PC banner configuration",
* format="file",
* )
*
* @var file
*/
private $pc_banner;

/**
* @OA\Property(
* title="mobile_bg",
* description="Product mobile banner configuration",
* format="file",
* )
*
* @var file
*/
private $mobile_bg;

/**
* @OA\Property(
* title="product_size",
* description="Product images configuration",
* format="file",
* )
*
* @var file
*/
private $product_size;
}

0 comments on commit 6422944

Please sign in to comment.