@@ -12,87 +12,87 @@ namespace Altinn.App.Api.Models;
12
12
public sealed class InstanceResponse
13
13
{
14
14
/// <summary>
15
- /// Gets or sets the unique id of the instance {instanceOwnerId}/{instanceGuid}.
15
+ /// The unique id of the instance {instanceOwnerId}/{instanceGuid}.
16
16
/// </summary>
17
17
public required string Id { get ; init ; }
18
18
19
19
/// <summary>
20
- /// Gets or sets the instance owner information.
20
+ /// The instance owner information.
21
21
/// </summary>
22
22
public required InstanceOwnerResponse InstanceOwner { get ; init ; }
23
23
24
24
/// <summary>
25
- /// Gets or sets the id of the application this is an instance of, e.g. {org}/{app22}.
25
+ /// The id of the application this is an instance of, e.g. {org}/{app22}.
26
26
/// </summary>
27
27
public required string AppId { get ; init ; }
28
28
29
29
/// <summary>
30
- /// Gets or sets application owner identifier, usually a abbreviation of organisation name. All in lower case.
30
+ /// Application owner identifier, usually a abbreviation of organisation name. All in lower case.
31
31
/// </summary>
32
32
public required string Org { get ; init ; }
33
33
34
34
/// <summary>
35
- /// Gets or sets a set of URLs to access the instance metadata resource.
35
+ /// A set of URLs to access the instance metadata resource.
36
36
/// </summary>
37
37
public required ResourceLinks SelfLinks { get ; init ; }
38
38
39
39
/// <summary>
40
- /// Gets or sets the due date to submit the instance to application owner.
40
+ /// The due date to submit the instance to application owner.
41
41
/// </summary>
42
42
public required DateTime ? DueBefore { get ; init ; }
43
43
44
44
/// <summary>
45
- /// Gets or sets date and time for when the instance should first become visible for the instance owner.
45
+ /// Date and time for when the instance should first become visible for the instance owner.
46
46
/// </summary>
47
47
public required DateTime ? VisibleAfter { get ; init ; }
48
48
49
49
/// <summary>
50
- /// Gets or sets an object containing the instance process state.
50
+ /// An object containing the instance process state.
51
51
/// </summary>
52
52
public required ProcessState Process { get ; init ; }
53
53
54
54
/// <summary>
55
- /// Gets or sets the type of finished status of the instance.
55
+ /// The type of finished status of the instance.
56
56
/// </summary>
57
57
public required InstanceStatus Status { get ; init ; }
58
58
59
59
/// <summary>
60
- /// Gets or sets a list of <see cref="CompleteConfirmation"/> elements.
60
+ /// A list of <see cref="CompleteConfirmation"/> elements.
61
61
/// </summary>
62
62
public required IReadOnlyList < CompleteConfirmation > CompleteConfirmations { get ; init ; }
63
63
64
64
/// <summary>
65
- /// Gets or sets a list of data elements associated with the instance
65
+ /// A list of data elements associated with the instance
66
66
/// </summary>
67
67
public required IReadOnlyList < DataElement > Data { get ; init ; }
68
68
69
69
/// <summary>
70
- /// Gets or sets the presentation texts for the instance.
70
+ /// The presentation texts for the instance.
71
71
/// </summary>
72
72
public required IReadOnlyDictionary < string , string > PresentationTexts { get ; init ; }
73
73
74
74
/// <summary>
75
- /// Gets or sets the data values for the instance.
75
+ /// The data values for the instance.
76
76
/// </summary>
77
77
public required IReadOnlyDictionary < string , string > DataValues { get ; init ; }
78
78
79
79
/// <summary>
80
- /// Gets or sets the date and time for when the element was created.
80
+ /// The date and time for when the element was created.
81
81
/// </summary>
82
82
public required DateTime ? Created { get ; init ; }
83
83
84
84
/// <summary>
85
- /// Gets or sets the id of the user who created this element.
85
+ /// The id of the user who created this element.
86
86
/// </summary>
87
87
public required string CreatedBy { get ; init ; }
88
88
89
89
/// <summary>
90
- /// Gets or sets the date and time for when the element was last edited.
90
+ /// The date and time for when the element was last edited.
91
91
/// </summary>
92
92
public required DateTime ? LastChanged { get ; init ; }
93
93
94
94
/// <summary>
95
- /// Gets or sets the id of the user who last changed this element.
95
+ /// The id of the user who last changed this element.
96
96
/// </summary>
97
97
public required string LastChangedBy { get ; init ; }
98
98
@@ -140,22 +140,22 @@ internal static InstanceResponse From(Instance instance, Party instanceOwnerPart
140
140
public sealed class InstanceOwnerResponse
141
141
{
142
142
/// <summary>
143
- /// Gets or sets the party id of the instance owner (also called instance owner party id).
143
+ /// The party id of the instance owner (also called instance owner party id).
144
144
/// </summary>
145
145
public required string PartyId { get ; init ; }
146
146
147
147
/// <summary>
148
- /// Gets or sets person number (national identification number) of the party. Null if the party is not a person.
148
+ /// Person number (national identification number) of the party. Null if the party is not a person.
149
149
/// </summary>
150
150
public required string PersonNumber { get ; init ; }
151
151
152
152
/// <summary>
153
- /// Gets or sets the organisation number of the party. Null if the party is not an organisation.
153
+ /// The organisation number of the party. Null if the party is not an organisation.
154
154
/// </summary>
155
155
public required string OrganisationNumber { get ; init ; }
156
156
157
157
/// <summary>
158
- /// Gets or sets the username of the party. Null if the party is not self identified.
158
+ /// The username of the party. Null if the party is not self identified.
159
159
/// </summary>
160
160
public required string Username { get ; init ; }
161
161
@@ -171,42 +171,42 @@ public sealed class InstanceOwnerResponse
171
171
public sealed class PartyResponse
172
172
{
173
173
/// <summary>
174
- /// Gets or sets the ID of the party
174
+ /// The ID of the party
175
175
/// </summary>
176
176
public required int PartyId { get ; init ; }
177
177
178
178
/// <summary>
179
- /// Gets or sets the UUID of the party
179
+ /// The UUID of the party
180
180
/// </summary>
181
181
public required Guid ? PartyUuid { get ; init ; }
182
182
183
183
/// <summary>
184
- /// Gets or sets the type of party
184
+ /// The type of party
185
185
/// </summary>
186
186
public required PartyType PartyTypeName { get ; init ; }
187
187
188
188
/// <summary>
189
- /// Gets the parties ssn
189
+ /// Person number (national identification number) of the party. Null if the party is not a person.
190
190
/// </summary>
191
191
public required string SSN { get ; init ; }
192
192
193
193
/// <summary>
194
- /// Gets the parties org number
194
+ /// The organisation number of the party. Null if the party is not an organisation.
195
195
/// </summary>
196
196
public required string OrgNumber { get ; init ; }
197
197
198
198
/// <summary>
199
- /// Gets or sets the UnitType
199
+ /// The UnitType
200
200
/// </summary>
201
201
public required string UnitType { get ; init ; }
202
202
203
203
/// <summary>
204
- /// Gets or sets the Name
204
+ /// The Name
205
205
/// </summary>
206
206
public required string Name { get ; init ; }
207
207
208
208
/// <summary>
209
- /// Gets or sets the IsDeleted
209
+ /// The IsDeleted
210
210
/// </summary>
211
211
public required bool IsDeleted { get ; init ; }
212
212
0 commit comments