Skip to content

Commit 1e4e077

Browse files
author
Client Tooling Big Giant Robot
committed
Update generated files with build 1145804
1 parent e2b3fd3 commit 1e4e077

File tree

7 files changed

+33
-17
lines changed

7 files changed

+33
-17
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public final AdditionalDataManager additionalDataManager() {
4040

4141
/**
4242
* The Attendee.
43-
* The type of attendee - whether it's a person or a resource, and whether required or optional if it's a person.
43+
* The email address and type of attendee - whether it's a person or a resource, and whether required or optional if it's a person.
4444
*/
4545
@SerializedName("attendee")
4646
@Expose

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,22 @@ public class Channel extends Entity implements IJsonBackedObject {
4646
@Expose
4747
public String description;
4848

49+
/**
50+
* The Email.
51+
*
52+
*/
53+
@SerializedName("email")
54+
@Expose
55+
public String email;
56+
57+
/**
58+
* The Web Url.
59+
*
60+
*/
61+
@SerializedName("webUrl")
62+
@Expose
63+
public String webUrl;
64+
4965
/**
5066
* The Tabs.
5167
* A collection of all the tabs in the channel. A navigation property.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ public final AdditionalDataManager additionalDataManager() {
3838

3939
/**
4040
* The Message.
41-
*
41+
* Describes the error.
4242
*/
4343
@SerializedName("message")
4444
@Expose
4545
public String message;
4646

4747
/**
4848
* The Response Code.
49-
*
49+
* The response code from querying for the availability of the user, distribution list, or resource.
5050
*/
5151
@SerializedName("responseCode")
5252
@Expose

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() {
5050

5151
/**
5252
* The Order.
53-
*
53+
* Order of meeting time suggestions sorted by their computed confidence value from high to low, then by chronology if there are suggestions with the same confidence.
5454
*/
5555
@SerializedName("order")
5656
@Expose

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,39 +41,39 @@ public final AdditionalDataManager additionalDataManager() {
4141

4242
/**
4343
* The Schedule Id.
44-
*
44+
* An SMTP address of the user, distribution list, or resource, identifying an instance of scheduleInformation.
4545
*/
4646
@SerializedName("scheduleId")
4747
@Expose
4848
public String scheduleId;
4949

5050
/**
5151
* The Schedule Items.
52-
*
52+
* Contains the items that describe the availability of the user or resource.
5353
*/
5454
@SerializedName("scheduleItems")
5555
@Expose
5656
public java.util.List<ScheduleItem> scheduleItems;
5757

5858
/**
5959
* The Availability View.
60-
*
60+
* Represents a merged view of availability of all the items in scheduleItems. The view consists of time slots. Availability during each time slot is indicated with: 0= free, 1= tentative, 2= busy, 3= out of office, 4= working elsewhere.
6161
*/
6262
@SerializedName("availabilityView")
6363
@Expose
6464
public String availabilityView;
6565

6666
/**
6767
* The Error.
68-
*
68+
* Error information from attempting to get the availability of the user, distribution list, or resource.
6969
*/
7070
@SerializedName("error")
7171
@Expose
7272
public FreeBusyError error;
7373

7474
/**
7575
* The Working Hours.
76-
*
76+
* The days of the week and hours in a specific time zone that the user works. These are set as part of the user's mailboxSettings.
7777
*/
7878
@SerializedName("workingHours")
7979
@Expose

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,47 +40,47 @@ public final AdditionalDataManager additionalDataManager() {
4040

4141
/**
4242
* The Start.
43-
*
43+
* The date, time, and time zone that the corresponding event starts.
4444
*/
4545
@SerializedName("start")
4646
@Expose
4747
public DateTimeTimeZone start;
4848

4949
/**
5050
* The End.
51-
*
51+
* The date, time, and time zone that the corresponding event ends.
5252
*/
5353
@SerializedName("end")
5454
@Expose
5555
public DateTimeTimeZone end;
5656

5757
/**
5858
* The Is Private.
59-
*
59+
* The sensitivity of the corresponding event. True if the event is marked private, false otherwise. Optional.
6060
*/
6161
@SerializedName("isPrivate")
6262
@Expose
6363
public Boolean isPrivate;
6464

6565
/**
6666
* The Status.
67-
*
67+
* The availability status of the user or resource during the corresponding event. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown.
6868
*/
6969
@SerializedName("status")
7070
@Expose
7171
public FreeBusyStatus status;
7272

7373
/**
7474
* The Subject.
75-
*
75+
* The corresponding event's subject line. Optional.
7676
*/
7777
@SerializedName("subject")
7878
@Expose
7979
public String subject;
8080

8181
/**
8282
* The Location.
83-
*
83+
* The location where the corresponding event is held or attended from. Optional.
8484
*/
8585
@SerializedName("location")
8686
@Expose

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ public final AdditionalDataManager additionalDataManager() {
3939

4040
/**
4141
* The Start.
42-
* The time the period ends.
42+
* The date, time, and time zone that a period ends.
4343
*/
4444
@SerializedName("start")
4545
@Expose
4646
public DateTimeTimeZone start;
4747

4848
/**
4949
* The End.
50-
* The time a period begins.
50+
* The date, time, and time zone that a period begins.
5151
*/
5252
@SerializedName("end")
5353
@Expose

0 commit comments

Comments
 (0)