@@ -758,8 +758,19 @@ public class Manufacturer
758
758
public string ? Email { get ; set ; }
759
759
}
760
760
761
+ public class IntegratedPlatform : ProductSearchProductsResponse . Types . Data . Types . Product . Types . IntegratedPlatform
762
+ {
763
+ }
764
+
761
765
public class AuditFailedReason
762
766
{
767
+ /// <summary>
768
+ /// 获取或设置上架平台。
769
+ /// </summary>
770
+ [ Newtonsoft . Json . JsonProperty ( "listing_platform" ) ]
771
+ [ System . Text . Json . Serialization . JsonPropertyName ( "listing_platform" ) ]
772
+ public string ? ListingPlatform { get ; set ; }
773
+
763
774
/// <summary>
764
775
/// 获取或设置位置。
765
776
/// </summary>
@@ -953,13 +964,6 @@ public class AuditFailedReason
953
964
[ System . Text . Json . Serialization . JsonPropertyName ( "responsible_person_ids" ) ]
954
965
public string [ ] ? ResponsiblePersonIdList { get ; set ; }
955
966
956
- /// <summary>
957
- /// 获取或设置上架平台列表。
958
- /// </summary>
959
- [ Newtonsoft . Json . JsonProperty ( "listing_platforms" ) ]
960
- [ System . Text . Json . Serialization . JsonPropertyName ( "listing_platforms" ) ]
961
- public string [ ] ? ListingPlatformList { get ; set ; }
962
-
963
967
/// <summary>
964
968
/// 获取或设置是否为非卖品。
965
969
/// </summary>
@@ -968,18 +972,53 @@ public class AuditFailedReason
968
972
public bool IsNotForSale { get ; set ; }
969
973
970
974
/// <summary>
971
- /// 获取或设置审核失败原因列表 。
975
+ /// 获取或设置是否为二手 。
972
976
/// </summary>
973
- [ Newtonsoft . Json . JsonProperty ( "audit_failed_reasons" ) ]
974
- [ System . Text . Json . Serialization . JsonPropertyName ( "audit_failed_reasons" ) ]
975
- public Types . AuditFailedReason [ ] ? AuditFailedReasonList { get ; set ; }
977
+ [ Newtonsoft . Json . JsonProperty ( "is_pre_owned" ) ]
978
+ [ System . Text . Json . Serialization . JsonPropertyName ( "is_pre_owned" ) ]
979
+ public bool ? IsPreOwned { get ; set ; }
980
+
981
+ /// <summary>
982
+ /// 获取或设置运输保险需求类型。
983
+ /// </summary>
984
+ [ Newtonsoft . Json . JsonProperty ( "shipping_insurance_requirement" ) ]
985
+ [ System . Text . Json . Serialization . JsonPropertyName ( "shipping_insurance_requirement" ) ]
986
+ public string ? ShippingInsuranceRequirementType { get ; set ; }
987
+
988
+ /// <summary>
989
+ /// 获取或设置最低订购数量。
990
+ /// </summary>
991
+ [ Newtonsoft . Json . JsonProperty ( "minimum_order_quantity" ) ]
992
+ [ System . Text . Json . Serialization . JsonPropertyName ( "minimum_order_quantity" ) ]
993
+ public int ? MinimumOrderQuantity { get ; set ; }
994
+
995
+ /// <summary>
996
+ /// 获取或设置上架平台列表。
997
+ /// </summary>
998
+ [ Newtonsoft . Json . JsonProperty ( "listing_platforms" ) ]
999
+ [ System . Text . Json . Serialization . JsonPropertyName ( "listing_platforms" ) ]
1000
+ public string [ ] ? ListingPlatformList { get ; set ; }
1001
+
1002
+ /// <summary>
1003
+ /// 获取或设置上架平台列表。
1004
+ /// </summary>
1005
+ [ Newtonsoft . Json . JsonProperty ( "integrated_platform_statuses" ) ]
1006
+ [ System . Text . Json . Serialization . JsonPropertyName ( "integrated_platform_statuses" ) ]
1007
+ public Types . IntegratedPlatform [ ] ? IntegratedPlatformList { get ; set ; }
976
1008
977
1009
/// <summary>
978
1010
/// 获取或设置上架质量等级。
979
1011
/// </summary>
980
1012
[ Newtonsoft . Json . JsonProperty ( "listing_quality_tier" ) ]
981
1013
[ System . Text . Json . Serialization . JsonPropertyName ( "listing_quality_tier" ) ]
982
1014
public string ? ListingQualityTier { get ; set ; }
1015
+
1016
+ /// <summary>
1017
+ /// 获取或设置审核失败原因列表。
1018
+ /// </summary>
1019
+ [ Newtonsoft . Json . JsonProperty ( "audit_failed_reasons" ) ]
1020
+ [ System . Text . Json . Serialization . JsonPropertyName ( "audit_failed_reasons" ) ]
1021
+ public Types . AuditFailedReason [ ] ? AuditFailedReasonList { get ; set ; }
983
1022
}
984
1023
}
985
1024
}
0 commit comments