Package com.microsoft.graph.models
Class AccessPackageCatalog
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.AccessPackageCatalog
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class AccessPackageCatalog
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Access Package Catalog.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Access Packages.The Catalog Type.The Created Date Time.The Description.The Display Name.The Is Externally Visible.The Modified Date Time.The State. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
catalogType
@SerializedName(value="catalogType", alternate="CatalogType") @Expose @Nullable public AccessPackageCatalogType catalogTypeThe Catalog Type. One of UserManaged or ServiceDefault. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. -
description
@SerializedName(value="description", alternate="Description") @Expose @Nullable public String descriptionThe Description. The description of the access package catalog. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The display name of the access package catalog. Supports $filter (eq, contains). -
isExternallyVisible
@SerializedName(value="isExternallyVisible", alternate="IsExternallyVisible") @Expose @Nullable public Boolean isExternallyVisibleThe Is Externally Visible. Whether the access packages in this catalog can be requested by users outside of the tenant. -
modifiedDateTime
@SerializedName(value="modifiedDateTime", alternate="ModifiedDateTime") @Expose @Nullable public OffsetDateTime modifiedDateTimeThe Modified Date Time. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. -
state
@SerializedName(value="state", alternate="State") @Expose @Nullable public AccessPackageCatalogState stateThe State. Has the value published if the access packages are available for management. The possible values are: unpublished, published, unknownFutureValue. -
accessPackages
@SerializedName(value="accessPackages", alternate="AccessPackages") @Expose @Nullable public AccessPackageCollectionPage accessPackagesThe Access Packages. The access packages in this catalog. Read-only. Nullable. Supports $expand.
-
-
Constructor Details
-
AccessPackageCatalog
public AccessPackageCatalog()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-