Skip to content

Commit 555e712

Browse files
author
Caitlin Bales (MSFT)
committed
Add Planner Applied Categories extension
1 parent 8fecc59 commit 555e712

File tree

1 file changed

+44
-13
lines changed

1 file changed

+44
-13
lines changed

src/main/java/com/microsoft/graph/models/extensions/PlannerAppliedCategories.java

Lines changed: 44 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,55 @@
44

55
package com.microsoft.graph.models.extensions;
66

7-
import com.microsoft.graph.concurrency.*;
8-
import com.microsoft.graph.core.*;
9-
import com.microsoft.graph.models.extensions.*;
10-
import com.microsoft.graph.models.generated.*;
11-
import com.microsoft.graph.http.*;
12-
import com.microsoft.graph.requests.extensions.*;
13-
import com.microsoft.graph.requests.generated.*;
14-
import com.microsoft.graph.options.*;
15-
import com.microsoft.graph.serializer.*;
16-
17-
import java.util.Arrays;
18-
import java.util.EnumSet;
7+
import com.google.gson.annotations.Expose;
8+
import com.google.gson.annotations.SerializedName;
9+
import com.microsoft.graph.models.generated.BasePlannerAppliedCategories;
1910

2011
// This file is available for extending, afterwards please submit a pull request.
2112

2213
/**
2314
* The class for the Planner Applied Categories.
2415
*/
2516
public class PlannerAppliedCategories extends BasePlannerAppliedCategories {
26-
17+
/**
18+
* The Category1
19+
*/
20+
@SerializedName("category1")
21+
@Expose
22+
public boolean category1;
23+
24+
/**
25+
* The Category1
26+
*/
27+
@SerializedName("category2")
28+
@Expose
29+
public boolean category2;
30+
31+
/**
32+
* The Category1
33+
*/
34+
@SerializedName("category3")
35+
@Expose
36+
public boolean category3;
37+
38+
/**
39+
* The Category1
40+
*/
41+
@SerializedName("category4")
42+
@Expose
43+
public boolean category4;
44+
45+
/**
46+
* The Category1
47+
*/
48+
@SerializedName("category5")
49+
@Expose
50+
public boolean category5;
51+
52+
/**
53+
* The Category1
54+
*/
55+
@SerializedName("category6")
56+
@Expose
57+
public boolean category6;
2758
}

0 commit comments

Comments
 (0)