-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
FollowupCommunicationInference.Serialization.cs
225 lines (208 loc) · 9.49 KB
/
FollowupCommunicationInference.Serialization.cs
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.ClientModel.Primitives;
using System.Collections.Generic;
using System.Text.Json;
using Azure;
using Azure.Core;
namespace Azure.Health.Insights.RadiologyInsights
{
public partial class FollowupCommunicationInference : IUtf8JsonSerializable, IJsonModel<FollowupCommunicationInference>
{
void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) => ((IJsonModel<FollowupCommunicationInference>)this).Write(writer, new ModelReaderWriterOptions("W"));
void IJsonModel<FollowupCommunicationInference>.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<FollowupCommunicationInference>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(FollowupCommunicationInference)} does not support '{format}' format.");
}
writer.WriteStartObject();
if (Optional.IsCollectionDefined(DateTime))
{
writer.WritePropertyName("dateTime"u8);
writer.WriteStartArray();
foreach (var item in DateTime)
{
writer.WriteStringValue(item, "O");
}
writer.WriteEndArray();
}
if (Optional.IsCollectionDefined(Recipient))
{
writer.WritePropertyName("recipient"u8);
writer.WriteStartArray();
foreach (var item in Recipient)
{
writer.WriteStringValue(item.ToString());
}
writer.WriteEndArray();
}
writer.WritePropertyName("wasAcknowledged"u8);
writer.WriteBooleanValue(WasAcknowledged);
writer.WritePropertyName("kind"u8);
writer.WriteStringValue(Kind);
if (Optional.IsCollectionDefined(Extension))
{
writer.WritePropertyName("extension"u8);
writer.WriteStartArray();
foreach (var item in Extension)
{
writer.WriteObjectValue(item);
}
writer.WriteEndArray();
}
if (options.Format != "W" && _serializedAdditionalRawData != null)
{
foreach (var item in _serializedAdditionalRawData)
{
writer.WritePropertyName(item.Key);
#if NET6_0_OR_GREATER
writer.WriteRawValue(item.Value);
#else
using (JsonDocument document = JsonDocument.Parse(item.Value))
{
JsonSerializer.Serialize(writer, document.RootElement);
}
#endif
}
}
writer.WriteEndObject();
}
FollowupCommunicationInference IJsonModel<FollowupCommunicationInference>.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<FollowupCommunicationInference>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(FollowupCommunicationInference)} does not support '{format}' format.");
}
using JsonDocument document = JsonDocument.ParseValue(ref reader);
return DeserializeFollowupCommunicationInference(document.RootElement, options);
}
internal static FollowupCommunicationInference DeserializeFollowupCommunicationInference(JsonElement element, ModelReaderWriterOptions options = null)
{
options ??= new ModelReaderWriterOptions("W");
if (element.ValueKind == JsonValueKind.Null)
{
return null;
}
IReadOnlyList<DateTimeOffset> dateTime = default;
IReadOnlyList<MedicalProfessionalType> recipient = default;
bool wasAcknowledged = default;
string kind = default;
IReadOnlyList<FhirR4Extension> extension = default;
IDictionary<string, BinaryData> serializedAdditionalRawData = default;
Dictionary<string, BinaryData> additionalPropertiesDictionary = new Dictionary<string, BinaryData>();
foreach (var property in element.EnumerateObject())
{
if (property.NameEquals("dateTime"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
List<DateTimeOffset> array = new List<DateTimeOffset>();
foreach (var item in property.Value.EnumerateArray())
{
array.Add(item.GetDateTimeOffset("O"));
}
dateTime = array;
continue;
}
if (property.NameEquals("recipient"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
List<MedicalProfessionalType> array = new List<MedicalProfessionalType>();
foreach (var item in property.Value.EnumerateArray())
{
array.Add(new MedicalProfessionalType(item.GetString()));
}
recipient = array;
continue;
}
if (property.NameEquals("wasAcknowledged"u8))
{
wasAcknowledged = property.Value.GetBoolean();
continue;
}
if (property.NameEquals("kind"u8))
{
kind = property.Value.GetString();
continue;
}
if (property.NameEquals("extension"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
List<FhirR4Extension> array = new List<FhirR4Extension>();
foreach (var item in property.Value.EnumerateArray())
{
array.Add(FhirR4Extension.DeserializeFhirR4Extension(item, options));
}
extension = array;
continue;
}
if (options.Format != "W")
{
additionalPropertiesDictionary.Add(property.Name, BinaryData.FromString(property.Value.GetRawText()));
}
}
serializedAdditionalRawData = additionalPropertiesDictionary;
return new FollowupCommunicationInference(
kind,
extension ?? new ChangeTrackingList<FhirR4Extension>(),
serializedAdditionalRawData,
dateTime ?? new ChangeTrackingList<DateTimeOffset>(),
recipient ?? new ChangeTrackingList<MedicalProfessionalType>(),
wasAcknowledged);
}
BinaryData IPersistableModel<FollowupCommunicationInference>.Write(ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<FollowupCommunicationInference>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
return ModelReaderWriter.Write(this, options);
default:
throw new FormatException($"The model {nameof(FollowupCommunicationInference)} does not support '{options.Format}' format.");
}
}
FollowupCommunicationInference IPersistableModel<FollowupCommunicationInference>.Create(BinaryData data, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<FollowupCommunicationInference>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
{
using JsonDocument document = JsonDocument.Parse(data);
return DeserializeFollowupCommunicationInference(document.RootElement, options);
}
default:
throw new FormatException($"The model {nameof(FollowupCommunicationInference)} does not support '{options.Format}' format.");
}
}
string IPersistableModel<FollowupCommunicationInference>.GetFormatFromOptions(ModelReaderWriterOptions options) => "J";
/// <summary> Deserializes the model from a raw response. </summary>
/// <param name="response"> The response to deserialize the model from. </param>
internal static new FollowupCommunicationInference FromResponse(Response response)
{
using var document = JsonDocument.Parse(response.Content);
return DeserializeFollowupCommunicationInference(document.RootElement);
}
/// <summary> Convert into a Utf8JsonRequestContent. </summary>
internal override RequestContent ToRequestContent()
{
var content = new Utf8JsonRequestContent();
content.JsonWriter.WriteObjectValue(this);
return content;
}
}
}