Package com.microsoft.graph.models
Class ConnectedOrganization
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.ConnectedOrganization
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class ConnectedOrganization
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Connected Organization.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Created Date Time.The Description.The Display Name.The External Sponsors.The Identity Sources.The Internal Sponsors.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
-
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 connected organization. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The display name of the connected organization. Supports $filter (eq). -
identitySources
@SerializedName(value="identitySources", alternate="IdentitySources") @Expose @Nullable public List<IdentitySource> identitySourcesThe Identity Sources. The identity sources in this connected organization, one of azureActiveDirectoryTenant, domainIdentitySource or externalDomainFederation. Read-only. Nullable. Supports $select and $filter(eq). To filter by the derived types, you must declare the resource using its full OData cast, for example, $filter=identitySources/any(is:is/microsoft.graph.azureActiveDirectoryTenant/tenantId eq 'bcfdfff4-cbc3-43f2-9000-ba7b7515054f'). -
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 ConnectedOrganizationState stateThe State. The state of a connected organization defines whether assignment policies with requestor scope type AllConfiguredConnectedOrganizationSubjects are applicable or not. Possible values are: configured, proposed. -
externalSponsors
@SerializedName(value="externalSponsors", alternate="ExternalSponsors") @Expose @Nullable public DirectoryObjectCollectionPage externalSponsorsThe External Sponsors. Nullable. -
internalSponsors
@SerializedName(value="internalSponsors", alternate="InternalSponsors") @Expose @Nullable public DirectoryObjectCollectionPage internalSponsorsThe Internal Sponsors. Nullable.
-
-
Constructor Details
-
ConnectedOrganization
public ConnectedOrganization()
-
-
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
-