forked from microsoftgraph/msgraph-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccessReviewSet.java
More file actions
78 lines (77 loc) · 3.84 KB
/
Copy pathAccessReviewSet.java
File metadata and controls
78 lines (77 loc) · 3.84 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
73
74
75
76
77
78
package com.microsoft.graph.models;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class AccessReviewSet extends Entity implements Parsable {
/**
* Instantiates a new {@link AccessReviewSet} and sets the default values.
*/
public AccessReviewSet() {
super();
}
/**
* Creates a new instance of the appropriate class based on discriminator value
* @param parseNode The parse node to use to read the discriminator value and create the object
* @return a {@link AccessReviewSet}
*/
@jakarta.annotation.Nonnull
public static AccessReviewSet createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new AccessReviewSet();
}
/**
* Gets the definitions property value. Represents the template and scheduling for an access review.
* @return a {@link java.util.List<AccessReviewScheduleDefinition>}
*/
@jakarta.annotation.Nullable
public java.util.List<AccessReviewScheduleDefinition> getDefinitions() {
return this.backingStore.get("definitions");
}
/**
* The deserialization information for the current model
* @return a {@link Map<String, java.util.function.Consumer<ParseNode>>}
*/
@jakarta.annotation.Nonnull
public Map<String, java.util.function.Consumer<ParseNode>> getFieldDeserializers() {
final HashMap<String, java.util.function.Consumer<ParseNode>> deserializerMap = new HashMap<String, java.util.function.Consumer<ParseNode>>(super.getFieldDeserializers());
deserializerMap.put("definitions", (n) -> { this.setDefinitions(n.getCollectionOfObjectValues(AccessReviewScheduleDefinition::createFromDiscriminatorValue)); });
deserializerMap.put("historyDefinitions", (n) -> { this.setHistoryDefinitions(n.getCollectionOfObjectValues(AccessReviewHistoryDefinition::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the historyDefinitions property value. Represents a collection of access review history data and the scopes used to collect that data.
* @return a {@link java.util.List<AccessReviewHistoryDefinition>}
*/
@jakarta.annotation.Nullable
public java.util.List<AccessReviewHistoryDefinition> getHistoryDefinitions() {
return this.backingStore.get("historyDefinitions");
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
Objects.requireNonNull(writer);
super.serialize(writer);
writer.writeCollectionOfObjectValues("definitions", this.getDefinitions());
writer.writeCollectionOfObjectValues("historyDefinitions", this.getHistoryDefinitions());
}
/**
* Sets the definitions property value. Represents the template and scheduling for an access review.
* @param value Value to set for the definitions property.
*/
public void setDefinitions(@jakarta.annotation.Nullable final java.util.List<AccessReviewScheduleDefinition> value) {
this.backingStore.set("definitions", value);
}
/**
* Sets the historyDefinitions property value. Represents a collection of access review history data and the scopes used to collect that data.
* @param value Value to set for the historyDefinitions property.
*/
public void setHistoryDefinitions(@jakarta.annotation.Nullable final java.util.List<AccessReviewHistoryDefinition> value) {
this.backingStore.set("historyDefinitions", value);
}
}