@@ -12,87 +12,87 @@ namespace Altinn.App.Api.Models;
1212public sealed class InstanceResponse
1313{
1414 /// <summary>
15- /// Gets or sets the unique id of the instance {instanceOwnerId}/{instanceGuid}.
15+ /// The unique id of the instance {instanceOwnerId}/{instanceGuid}.
1616 /// </summary>
1717 public required string Id { get ; init ; }
1818
1919 /// <summary>
20- /// Gets or sets the instance owner information.
20+ /// The instance owner information.
2121 /// </summary>
2222 public required InstanceOwnerResponse InstanceOwner { get ; init ; }
2323
2424 /// <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}.
2626 /// </summary>
2727 public required string AppId { get ; init ; }
2828
2929 /// <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.
3131 /// </summary>
3232 public required string Org { get ; init ; }
3333
3434 /// <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.
3636 /// </summary>
3737 public required ResourceLinks SelfLinks { get ; init ; }
3838
3939 /// <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.
4141 /// </summary>
4242 public required DateTime ? DueBefore { get ; init ; }
4343
4444 /// <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.
4646 /// </summary>
4747 public required DateTime ? VisibleAfter { get ; init ; }
4848
4949 /// <summary>
50- /// Gets or sets an object containing the instance process state.
50+ /// An object containing the instance process state.
5151 /// </summary>
5252 public required ProcessState Process { get ; init ; }
5353
5454 /// <summary>
55- /// Gets or sets the type of finished status of the instance.
55+ /// The type of finished status of the instance.
5656 /// </summary>
5757 public required InstanceStatus Status { get ; init ; }
5858
5959 /// <summary>
60- /// Gets or sets a list of <see cref="CompleteConfirmation"/> elements.
60+ /// A list of <see cref="CompleteConfirmation"/> elements.
6161 /// </summary>
6262 public required IReadOnlyList < CompleteConfirmation > CompleteConfirmations { get ; init ; }
6363
6464 /// <summary>
65- /// Gets or sets a list of data elements associated with the instance
65+ /// A list of data elements associated with the instance
6666 /// </summary>
6767 public required IReadOnlyList < DataElement > Data { get ; init ; }
6868
6969 /// <summary>
70- /// Gets or sets the presentation texts for the instance.
70+ /// The presentation texts for the instance.
7171 /// </summary>
7272 public required IReadOnlyDictionary < string , string > PresentationTexts { get ; init ; }
7373
7474 /// <summary>
75- /// Gets or sets the data values for the instance.
75+ /// The data values for the instance.
7676 /// </summary>
7777 public required IReadOnlyDictionary < string , string > DataValues { get ; init ; }
7878
7979 /// <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.
8181 /// </summary>
8282 public required DateTime ? Created { get ; init ; }
8383
8484 /// <summary>
85- /// Gets or sets the id of the user who created this element.
85+ /// The id of the user who created this element.
8686 /// </summary>
8787 public required string CreatedBy { get ; init ; }
8888
8989 /// <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.
9191 /// </summary>
9292 public required DateTime ? LastChanged { get ; init ; }
9393
9494 /// <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.
9696 /// </summary>
9797 public required string LastChangedBy { get ; init ; }
9898
@@ -140,22 +140,22 @@ internal static InstanceResponse From(Instance instance, Party instanceOwnerPart
140140public sealed class InstanceOwnerResponse
141141{
142142 /// <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).
144144 /// </summary>
145145 public required string PartyId { get ; init ; }
146146
147147 /// <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.
149149 /// </summary>
150150 public required string PersonNumber { get ; init ; }
151151
152152 /// <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.
154154 /// </summary>
155155 public required string OrganisationNumber { get ; init ; }
156156
157157 /// <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.
159159 /// </summary>
160160 public required string Username { get ; init ; }
161161
@@ -171,42 +171,42 @@ public sealed class InstanceOwnerResponse
171171public sealed class PartyResponse
172172{
173173 /// <summary>
174- /// Gets or sets the ID of the party
174+ /// The ID of the party
175175 /// </summary>
176176 public required int PartyId { get ; init ; }
177177
178178 /// <summary>
179- /// Gets or sets the UUID of the party
179+ /// The UUID of the party
180180 /// </summary>
181181 public required Guid ? PartyUuid { get ; init ; }
182182
183183 /// <summary>
184- /// Gets or sets the type of party
184+ /// The type of party
185185 /// </summary>
186186 public required PartyType PartyTypeName { get ; init ; }
187187
188188 /// <summary>
189- /// Gets the parties ssn
189+ /// Person number (national identification number) of the party. Null if the party is not a person.
190190 /// </summary>
191191 public required string SSN { get ; init ; }
192192
193193 /// <summary>
194- /// Gets the parties org number
194+ /// The organisation number of the party. Null if the party is not an organisation.
195195 /// </summary>
196196 public required string OrgNumber { get ; init ; }
197197
198198 /// <summary>
199- /// Gets or sets the UnitType
199+ /// The UnitType
200200 /// </summary>
201201 public required string UnitType { get ; init ; }
202202
203203 /// <summary>
204- /// Gets or sets the Name
204+ /// The Name
205205 /// </summary>
206206 public required string Name { get ; init ; }
207207
208208 /// <summary>
209- /// Gets or sets the IsDeleted
209+ /// The IsDeleted
210210 /// </summary>
211211 public required bool IsDeleted { get ; init ; }
212212
0 commit comments