Skip to content
This repository was archived by the owner on Sep 4, 2020. It is now read-only.

Commit ae6f96f

Browse files
author
Brian Melton
committed
Rebuilt file via code generator
1 parent c293d36 commit ae6f96f

1 file changed

Lines changed: 21 additions & 16 deletions

File tree

graphsdk/src/main/java/com/microsoft/graph/generated/BaseRecurrenceRange.java

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,19 @@
44

55
package com.microsoft.graph.generated;
66

7+
import com.microsoft.graph.concurrency.*;
8+
import com.microsoft.graph.core.*;
9+
import com.microsoft.graph.extensions.*;
10+
import com.microsoft.graph.http.*;
11+
import com.microsoft.graph.generated.*;
12+
import com.microsoft.graph.options.*;
13+
import com.microsoft.graph.serializer.*;
14+
15+
import java.util.Arrays;
16+
import java.util.List;
17+
718
import com.google.gson.JsonObject;
8-
import com.google.gson.annotations.SerializedName;
9-
import com.microsoft.graph.extensions.RecurrenceRangeType;
10-
import com.microsoft.graph.model.DateOnly;
11-
import com.microsoft.graph.serializer.IJsonBackedObject;
12-
import com.microsoft.graph.serializer.ISerializer;
19+
import com.google.gson.annotations.*;
1320

1421
// **NOTE** This file was generated by a tool and any changes will be overwritten.
1522

@@ -18,13 +25,13 @@
1825
*/
1926
public class BaseRecurrenceRange implements IJsonBackedObject {
2027

21-
@SerializedName("@odata.type")
22-
public String oDataType;
23-
24-
public BaseRecurrenceRange() {
25-
oDataType = "microsoft.graph.recurrenceRange";
26-
}
28+
@SerializedName("@odata.type")
29+
public String oDataType;
2730

31+
public BaseRecurrenceRange(){
32+
oDataType = "microsoft.graph.recurrenceRange";
33+
}
34+
2835
/**
2936
* The Type.
3037
*/
@@ -35,13 +42,13 @@ public BaseRecurrenceRange() {
3542
* The Start Date.
3643
*/
3744
@SerializedName("startDate")
38-
public DateOnly startDate;
45+
public com.microsoft.graph.model.DateOnly startDate;
3946

4047
/**
4148
* The End Date.
4249
*/
4350
@SerializedName("endDate")
44-
public DateOnly endDate;
51+
public com.microsoft.graph.model.DateOnly endDate;
4552

4653
/**
4754
* The Recurrence Time Zone.
@@ -68,7 +75,6 @@ public BaseRecurrenceRange() {
6875

6976
/**
7077
* Gets the raw representation of this class
71-
*
7278
* @return the raw representation of this class
7379
*/
7480
public JsonObject getRawObject() {
@@ -77,7 +83,6 @@ public JsonObject getRawObject() {
7783

7884
/**
7985
* Gets serializer
80-
*
8186
* @return the serializer
8287
*/
8388
protected ISerializer getSerializer() {
@@ -88,7 +93,7 @@ protected ISerializer getSerializer() {
8893
* Sets the raw json object
8994
*
9095
* @param serializer The serializer
91-
* @param json The json object to set this object to
96+
* @param json The json object to set this object to
9297
*/
9398
public void setRawObject(final ISerializer serializer, final JsonObject json) {
9499
mSerializer = serializer;

0 commit comments

Comments
 (0)