|
| 1 | +using System; |
| 2 | +using System.Collections.Generic; |
| 3 | +using Newtonsoft.Json; |
| 4 | + |
| 5 | +/* |
| 6 | + * AvaTax API Client Library |
| 7 | + * |
| 8 | + * (c) 2004-2023 Avalara, Inc. |
| 9 | + * |
| 10 | + * For the full copyright and license information, please view the LICENSE |
| 11 | + * file that was distributed with this source code. |
| 12 | + * |
| 13 | + * @author Jonathan Wenger <jonathan.wenger@avalara.com> |
| 14 | + * @author Sachin Baijal <sachin.baijal@avalara.com> |
| 15 | + * Swagger name: AvaTaxClient |
| 16 | + */ |
| 17 | + |
| 18 | +namespace Avalara.AvaTax.RestClient |
| 19 | +{ |
| 20 | + /// <summary> |
| 21 | + /// Input model of the HS code classification. |
| 22 | + /// </summary> |
| 23 | + public class ItemHSCodeClassificationInputModel |
| 24 | + { |
| 25 | + /// <summary> |
| 26 | + /// The unique item ID. |
| 27 | + /// </summary> |
| 28 | + public Int64 itemId { get; set; } |
| 29 | + |
| 30 | + /// <summary> |
| 31 | + /// Country of destination for this HS code classification. |
| 32 | + /// </summary> |
| 33 | + public List<String> countryOfDestinations { get; set; } |
| 34 | + |
| 35 | + /// <summary> |
| 36 | + /// Used for checking the premium classification status. |
| 37 | + /// </summary> |
| 38 | + public Boolean? isPremiumClassification { get; set; } |
| 39 | + |
| 40 | + /// <summary> |
| 41 | + /// A field for checking whether this is a reclassification. |
| 42 | + /// </summary> |
| 43 | + public Boolean? isReclassification { get; set; } |
| 44 | + |
| 45 | + /// <summary> |
| 46 | + /// Whether this item classification is disputed. |
| 47 | + /// </summary> |
| 48 | + public Boolean? isDisputed { get; set; } |
| 49 | + |
| 50 | + /// <summary> |
| 51 | + /// Whether this item classification is a priority classification. |
| 52 | + /// </summary> |
| 53 | + public Boolean? isPriority { get; set; } |
| 54 | + |
| 55 | + /// <summary> |
| 56 | + /// the item is exported to other countries. |
| 57 | + /// </summary> |
| 58 | + public Boolean? isExport { get; set; } |
| 59 | + |
| 60 | + /// <summary> |
| 61 | + /// IsExportControl flag to identify cross border classification |
| 62 | + /// </summary> |
| 63 | + public Boolean? isExportControl { get; set; } |
| 64 | + |
| 65 | + /// <summary> |
| 66 | + /// Instructions related to this item classification. |
| 67 | + /// </summary> |
| 68 | + public String instructions { get; set; } |
| 69 | + |
| 70 | + /// <summary> |
| 71 | + /// The language used in this item classification. |
| 72 | + /// </summary> |
| 73 | + public String language { get; set; } |
| 74 | + |
| 75 | + |
| 76 | + /// <summary> |
| 77 | + /// Convert this object to a JSON string of itself |
| 78 | + /// </summary> |
| 79 | + /// <returns>A JSON string of this object</returns> |
| 80 | + public override string ToString() |
| 81 | + { |
| 82 | + return JsonConvert.SerializeObject(this, new JsonSerializerSettings() { Formatting = Formatting.Indented }); |
| 83 | + } |
| 84 | + } |
| 85 | +} |
0 commit comments