regenerate code
This commit is contained in:
@@ -35,20 +35,20 @@ namespace AlibabaCloud
|
||||
CreateRateRequest();
|
||||
~CreateRateRequest();
|
||||
|
||||
std::string getScore()const;
|
||||
void setScore(const std::string& score);
|
||||
std::string getOrderId()const;
|
||||
void setOrderId(const std::string& orderId);
|
||||
std::string getRequestId()const;
|
||||
void setRequestId(const std::string& requestId);
|
||||
std::string getContent()const;
|
||||
void setContent(const std::string& content);
|
||||
std::string getScore()const;
|
||||
void setScore(const std::string& score);
|
||||
std::string getRequestId()const;
|
||||
void setRequestId(const std::string& requestId);
|
||||
|
||||
private:
|
||||
std::string score_;
|
||||
std::string orderId_;
|
||||
std::string requestId_;
|
||||
std::string content_;
|
||||
std::string score_;
|
||||
std::string requestId_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -80,6 +80,7 @@ namespace AlibabaCloud
|
||||
std::string getExtendJson()const;
|
||||
std::string getSupplierName()const;
|
||||
std::string getComponentJson()const;
|
||||
bool getIsTrial()const;
|
||||
std::string getProductSkuCode()const;
|
||||
long getCreatedOn()const;
|
||||
std::string getHostJson()const;
|
||||
@@ -102,6 +103,7 @@ namespace AlibabaCloud
|
||||
std::string extendJson_;
|
||||
std::string supplierName_;
|
||||
std::string componentJson_;
|
||||
bool isTrial_;
|
||||
std::string productSkuCode_;
|
||||
long createdOn_;
|
||||
std::string hostJson_;
|
||||
|
||||
@@ -35,17 +35,17 @@ namespace AlibabaCloud
|
||||
DescribeInstancesRequest();
|
||||
~DescribeInstancesRequest();
|
||||
|
||||
int getPageSize()const;
|
||||
void setPageSize(int pageSize);
|
||||
int getPageNumber()const;
|
||||
void setPageNumber(int pageNumber);
|
||||
std::string getProductType()const;
|
||||
void setProductType(const std::string& productType);
|
||||
int getPageSize()const;
|
||||
void setPageSize(int pageSize);
|
||||
|
||||
private:
|
||||
int pageSize_;
|
||||
int pageNumber_;
|
||||
std::string productType_;
|
||||
int pageSize_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -48,6 +48,7 @@ namespace AlibabaCloud
|
||||
int getQuantity()const;
|
||||
long getOrderId()const;
|
||||
std::vector<std::string> getSupplierTelephones()const;
|
||||
std::string getComponents()const;
|
||||
std::string getOrderStatus()const;
|
||||
std::string getOrderType()const;
|
||||
float getTotalPrice()const;
|
||||
@@ -72,6 +73,7 @@ namespace AlibabaCloud
|
||||
int quantity_;
|
||||
long orderId_;
|
||||
std::vector<std::string> supplierTelephones_;
|
||||
std::string components_;
|
||||
std::string orderStatus_;
|
||||
std::string orderType_;
|
||||
float totalPrice_;
|
||||
|
||||
@@ -38,25 +38,50 @@ namespace AlibabaCloud
|
||||
std::string title;
|
||||
std::string name;
|
||||
};
|
||||
struct Coupon
|
||||
{
|
||||
std::string couponOptionNo;
|
||||
std::string couponName;
|
||||
std::string couponDesc;
|
||||
float canPromFee;
|
||||
bool isSelected;
|
||||
std::string couponOptionCode;
|
||||
};
|
||||
|
||||
|
||||
DescribePriceResult();
|
||||
explicit DescribePriceResult(const std::string &payload);
|
||||
~DescribePriceResult();
|
||||
std::vector<PromotionRule> getPromotionRules()const;
|
||||
std::string getExpressionCode()const;
|
||||
float getOriginalPrice()const;
|
||||
std::string getProductCode()const;
|
||||
float getDiscountPrice()const;
|
||||
int getDuration()const;
|
||||
float getTradePrice()const;
|
||||
bool getCuxiao()const;
|
||||
std::string getCycle()const;
|
||||
std::string getInfoTitle()const;
|
||||
std::vector<PromotionRule> getPromotionRules()const;
|
||||
float getDiscountPrice()const;
|
||||
std::string getCurrency()const;
|
||||
std::string getExpressionMessage()const;
|
||||
std::vector<Coupon> getCoupons()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::vector<PromotionRule> promotionRules_;
|
||||
std::string expressionCode_;
|
||||
float originalPrice_;
|
||||
std::string productCode_;
|
||||
float discountPrice_;
|
||||
int duration_;
|
||||
float tradePrice_;
|
||||
bool cuxiao_;
|
||||
std::string cycle_;
|
||||
std::string infoTitle_;
|
||||
std::vector<PromotionRule> promotionRules_;
|
||||
float discountPrice_;
|
||||
std::string currency_;
|
||||
std::string expressionMessage_;
|
||||
std::vector<Coupon> coupons_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -99,6 +99,7 @@ namespace AlibabaCloud
|
||||
explicit DescribeProductResult(const std::string &payload);
|
||||
~DescribeProductResult();
|
||||
std::string getStatus()const;
|
||||
long getFrontCategoryId()const;
|
||||
std::string getDescription()const;
|
||||
ShopInfo getShopInfo()const;
|
||||
std::vector<ProductSku> getProductSkus()const;
|
||||
@@ -108,6 +109,7 @@ namespace AlibabaCloud
|
||||
std::string getCode()const;
|
||||
std::string getName()const;
|
||||
std::string getShortDescription()const;
|
||||
long getSupplierPk()const;
|
||||
std::string getType()const;
|
||||
float getScore()const;
|
||||
std::string getAuditStatus()const;
|
||||
@@ -120,6 +122,7 @@ namespace AlibabaCloud
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string status_;
|
||||
long frontCategoryId_;
|
||||
std::string description_;
|
||||
ShopInfo shopInfo_;
|
||||
std::vector<ProductSku> productSkus_;
|
||||
@@ -129,6 +132,7 @@ namespace AlibabaCloud
|
||||
std::string code_;
|
||||
std::string name_;
|
||||
std::string shortDescription_;
|
||||
long supplierPk_;
|
||||
std::string type_;
|
||||
float score_;
|
||||
std::string auditStatus_;
|
||||
|
||||
@@ -30,6 +30,7 @@ namespace AlibabaCloud
|
||||
{
|
||||
class ALIBABACLOUD_MARKET_EXPORT DescribeProductsRequest : public RpcServiceRequest
|
||||
{
|
||||
public:
|
||||
struct Filter
|
||||
{
|
||||
std::string value;
|
||||
|
||||
Reference in New Issue
Block a user