forked from microsoftgraph/msgraph-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccessPackageQuestion.cs
More file actions
72 lines (72 loc) · 3.87 KB
/
Copy pathAccessPackageQuestion.cs
File metadata and controls
72 lines (72 loc) · 3.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// <auto-generated/>
using Microsoft.Kiota.Abstractions.Serialization;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System;
namespace ApiSdk.Models {
public class AccessPackageQuestion : Entity, IParsable {
/// <summary>Specifies whether the requestor is allowed to edit answers to questions for an assignment by posting an update to accessPackageAssignmentRequest.</summary>
public bool? IsAnswerEditable { get; set; }
/// <summary>Whether the requestor is required to supply an answer or not.</summary>
public bool? IsRequired { get; set; }
/// <summary>The text of the question represented in a format for a specific locale.</summary>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
public List<AccessPackageLocalizedText>? Localizations { get; set; }
#nullable restore
#else
public List<AccessPackageLocalizedText> Localizations { get; set; }
#endif
/// <summary>Relative position of this question when displaying a list of questions to the requestor.</summary>
public int? Sequence { get; set; }
/// <summary>The text of the question to show to the requestor.</summary>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
public string? Text { get; set; }
#nullable restore
#else
public string Text { get; set; }
#endif
/// <summary>
/// Creates a new instance of the appropriate class based on discriminator value
/// </summary>
/// <returns>A <cref="AccessPackageQuestion"></returns>
/// <param name="parseNode">The parse node to use to read the discriminator value and create the object</param>
public static new AccessPackageQuestion CreateFromDiscriminatorValue(IParseNode parseNode) {
_ = parseNode ?? throw new ArgumentNullException(nameof(parseNode));
var mappingValue = parseNode.GetChildNode("@odata.type")?.GetStringValue();
return mappingValue switch {
"#microsoft.graph.accessPackageMultipleChoiceQuestion" => new AccessPackageMultipleChoiceQuestion(),
"#microsoft.graph.accessPackageTextInputQuestion" => new AccessPackageTextInputQuestion(),
_ => new AccessPackageQuestion(),
};
}
/// <summary>
/// The deserialization information for the current model
/// </summary>
/// <returns>A <cref="IDictionary<string, Action<IParseNode>>"></returns>
public override IDictionary<string, Action<IParseNode>> GetFieldDeserializers() {
return new Dictionary<string, Action<IParseNode>>(base.GetFieldDeserializers()) {
{"isAnswerEditable", n => { IsAnswerEditable = n.GetBoolValue(); } },
{"isRequired", n => { IsRequired = n.GetBoolValue(); } },
{"localizations", n => { Localizations = n.GetCollectionOfObjectValues<AccessPackageLocalizedText>(AccessPackageLocalizedText.CreateFromDiscriminatorValue)?.ToList(); } },
{"sequence", n => { Sequence = n.GetIntValue(); } },
{"text", n => { Text = n.GetStringValue(); } },
};
}
/// <summary>
/// Serializes information the current object
/// </summary>
/// <param name="writer">Serialization writer to use to serialize this model</param>
public override void Serialize(ISerializationWriter writer) {
_ = writer ?? throw new ArgumentNullException(nameof(writer));
base.Serialize(writer);
writer.WriteBoolValue("isAnswerEditable", IsAnswerEditable);
writer.WriteBoolValue("isRequired", IsRequired);
writer.WriteCollectionOfObjectValues<AccessPackageLocalizedText>("localizations", Localizations);
writer.WriteIntValue("sequence", Sequence);
writer.WriteStringValue("text", Text);
}
}
}