| | 1 | | // <auto-generated> |
| | 2 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 3 | | // Licensed under the MIT License. See License.txt in the project root for |
| | 4 | | // license information. |
| | 5 | | // |
| | 6 | | // Code generated by Microsoft (R) AutoRest Code Generator. |
| | 7 | | // Changes may cause incorrect behavior and will be lost if the code is |
| | 8 | | // regenerated. |
| | 9 | | // </auto-generated> |
| | 10 | |
|
| | 11 | | namespace Microsoft.Azure.HDInsight.Job.Models |
| | 12 | | { |
| | 13 | | using Newtonsoft.Json; |
| | 14 | | using System.Linq; |
| | 15 | |
|
| | 16 | | public partial class SparkStatementRequest |
| | 17 | | { |
| | 18 | | /// <summary> |
| | 19 | | /// Initializes a new instance of the SparkStatementRequest class. |
| | 20 | | /// </summary> |
| 2 | 21 | | public SparkStatementRequest() |
| | 22 | | { |
| | 23 | | CustomInit(); |
| 2 | 24 | | } |
| | 25 | |
|
| | 26 | | /// <summary> |
| | 27 | | /// Initializes a new instance of the SparkStatementRequest class. |
| | 28 | | /// </summary> |
| 0 | 29 | | public SparkStatementRequest(string code = default(string), string kind = default(string)) |
| | 30 | | { |
| 0 | 31 | | Code = code; |
| 0 | 32 | | Kind = kind; |
| | 33 | | CustomInit(); |
| 0 | 34 | | } |
| | 35 | |
|
| | 36 | | /// <summary> |
| | 37 | | /// An initialization method that performs custom operations like setting defaults |
| | 38 | | /// </summary> |
| | 39 | | partial void CustomInit(); |
| | 40 | |
|
| | 41 | | /// <summary> |
| | 42 | | /// </summary> |
| | 43 | | [JsonProperty(PropertyName = "code")] |
| 4 | 44 | | public string Code { get; set; } |
| | 45 | |
|
| | 46 | | /// <summary> |
| | 47 | | /// </summary> |
| | 48 | | [JsonProperty(PropertyName = "kind")] |
| 0 | 49 | | public string Kind { get; set; } |
| | 50 | |
|
| | 51 | | } |
| | 52 | | } |