-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1619 from microsoftgraph/v1.0/pipelinebuild/128844
Generated models and request builders
- Loading branch information
Showing
68 changed files
with
4,898 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 85 additions & 0 deletions
85
src/main/java/com/microsoft/graph/models/ItemRetentionLabel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
// Template Source: BaseEntity.java.tt | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
package com.microsoft.graph.models; | ||
import com.microsoft.graph.serializer.ISerializer; | ||
import com.microsoft.graph.serializer.IJsonBackedObject; | ||
import com.microsoft.graph.serializer.AdditionalDataManager; | ||
import java.util.EnumSet; | ||
import com.microsoft.graph.models.IdentitySet; | ||
import com.microsoft.graph.models.RetentionLabelSettings; | ||
import com.microsoft.graph.models.Entity; | ||
|
||
|
||
import com.google.gson.JsonObject; | ||
import com.google.gson.annotations.SerializedName; | ||
import com.google.gson.annotations.Expose; | ||
import javax.annotation.Nullable; | ||
import javax.annotation.Nonnull; | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
|
||
/** | ||
* The class for the Item Retention Label. | ||
*/ | ||
public class ItemRetentionLabel extends Entity implements IJsonBackedObject { | ||
|
||
|
||
/** | ||
* The Is Label Applied Explicitly. | ||
* Specifies whether the label is applied explicitly on the item. True indicates that the label is applied explicitly; otherwise, the label is inherited from its parent. Read-only. | ||
*/ | ||
@SerializedName(value = "isLabelAppliedExplicitly", alternate = {"IsLabelAppliedExplicitly"}) | ||
@Expose | ||
@Nullable | ||
public Boolean isLabelAppliedExplicitly; | ||
|
||
/** | ||
* The Label Applied By. | ||
* Identity of the user who applied the label. Read-only. | ||
*/ | ||
@SerializedName(value = "labelAppliedBy", alternate = {"LabelAppliedBy"}) | ||
@Expose | ||
@Nullable | ||
public IdentitySet labelAppliedBy; | ||
|
||
/** | ||
* The Label Applied Date Time. | ||
* The date and time when the label was applied on the item. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. | ||
*/ | ||
@SerializedName(value = "labelAppliedDateTime", alternate = {"LabelAppliedDateTime"}) | ||
@Expose | ||
@Nullable | ||
public java.time.OffsetDateTime labelAppliedDateTime; | ||
|
||
/** | ||
* The Name. | ||
* The retention label on the document. Read-write. | ||
*/ | ||
@SerializedName(value = "name", alternate = {"Name"}) | ||
@Expose | ||
@Nullable | ||
public String name; | ||
|
||
/** | ||
* The Retention Settings. | ||
* The retention settings enforced on the item. Read-write. | ||
*/ | ||
@SerializedName(value = "retentionSettings", alternate = {"RetentionSettings"}) | ||
@Expose | ||
@Nullable | ||
public RetentionLabelSettings retentionSettings; | ||
|
||
|
||
/** | ||
* Sets the raw JSON object | ||
* | ||
* @param serializer the serializer | ||
* @param json the JSON object to set this object to | ||
*/ | ||
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) { | ||
|
||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
src/main/java/com/microsoft/graph/models/MeetingAudience.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// Template Source: Enum.java.tt | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
package com.microsoft.graph.models; | ||
|
||
|
||
/** | ||
* The Enum Meeting Audience. | ||
*/ | ||
public enum MeetingAudience | ||
{ | ||
/** | ||
* everyone | ||
*/ | ||
EVERYONE, | ||
/** | ||
* organization | ||
*/ | ||
ORGANIZATION, | ||
/** | ||
* unknown Future Value | ||
*/ | ||
UNKNOWN_FUTURE_VALUE, | ||
/** | ||
* For MeetingAudience values that were not expected from the service | ||
*/ | ||
UNEXPECTED_VALUE | ||
} |
Oops, something went wrong.