com.microsoft.graph.generated.models.MultiTenantOrganization Maven / Gradle / Ivy
package com.microsoft.graph.models;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import java.time.OffsetDateTime;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class MultiTenantOrganization extends Entity implements Parsable {
/**
* Instantiates a new {@link MultiTenantOrganization} and sets the default values.
*/
public MultiTenantOrganization() {
super();
}
/**
* Creates a new instance of the appropriate class based on discriminator value
* @param parseNode The parse node to use to read the discriminator value and create the object
* @return a {@link MultiTenantOrganization}
*/
@jakarta.annotation.Nonnull
public static MultiTenantOrganization createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new MultiTenantOrganization();
}
/**
* Gets the createdDateTime property value. Date when multitenant organization was created. Read-only.
* @return a {@link OffsetDateTime}
*/
@jakarta.annotation.Nullable
public OffsetDateTime getCreatedDateTime() {
return this.backingStore.get("createdDateTime");
}
/**
* Gets the description property value. Description of the multitenant organization.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDescription() {
return this.backingStore.get("description");
}
/**
* Gets the displayName property value. Display name of the multitenant organization.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDisplayName() {
return this.backingStore.get("displayName");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(super.getFieldDeserializers());
deserializerMap.put("createdDateTime", (n) -> { this.setCreatedDateTime(n.getOffsetDateTimeValue()); });
deserializerMap.put("description", (n) -> { this.setDescription(n.getStringValue()); });
deserializerMap.put("displayName", (n) -> { this.setDisplayName(n.getStringValue()); });
deserializerMap.put("joinRequest", (n) -> { this.setJoinRequest(n.getObjectValue(MultiTenantOrganizationJoinRequestRecord::createFromDiscriminatorValue)); });
deserializerMap.put("state", (n) -> { this.setState(n.getEnumValue(MultiTenantOrganizationState::forValue)); });
deserializerMap.put("tenants", (n) -> { this.setTenants(n.getCollectionOfObjectValues(MultiTenantOrganizationMember::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the joinRequest property value. Defines the status of a tenant joining a multitenant organization.
* @return a {@link MultiTenantOrganizationJoinRequestRecord}
*/
@jakarta.annotation.Nullable
public MultiTenantOrganizationJoinRequestRecord getJoinRequest() {
return this.backingStore.get("joinRequest");
}
/**
* Gets the state property value. State of the multitenant organization. The possible values are: active, inactive, unknownFutureValue. active indicates the multitenant organization is created. inactive indicates the multitenant organization isn't created. Read-only.
* @return a {@link MultiTenantOrganizationState}
*/
@jakarta.annotation.Nullable
public MultiTenantOrganizationState getState() {
return this.backingStore.get("state");
}
/**
* Gets the tenants property value. Defines tenants added to a multitenant organization.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getTenants() {
return this.backingStore.get("tenants");
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
Objects.requireNonNull(writer);
super.serialize(writer);
writer.writeOffsetDateTimeValue("createdDateTime", this.getCreatedDateTime());
writer.writeStringValue("description", this.getDescription());
writer.writeStringValue("displayName", this.getDisplayName());
writer.writeObjectValue("joinRequest", this.getJoinRequest());
writer.writeEnumValue("state", this.getState());
writer.writeCollectionOfObjectValues("tenants", this.getTenants());
}
/**
* Sets the createdDateTime property value. Date when multitenant organization was created. Read-only.
* @param value Value to set for the createdDateTime property.
*/
public void setCreatedDateTime(@jakarta.annotation.Nullable final OffsetDateTime value) {
this.backingStore.set("createdDateTime", value);
}
/**
* Sets the description property value. Description of the multitenant organization.
* @param value Value to set for the description property.
*/
public void setDescription(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("description", value);
}
/**
* Sets the displayName property value. Display name of the multitenant organization.
* @param value Value to set for the displayName property.
*/
public void setDisplayName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("displayName", value);
}
/**
* Sets the joinRequest property value. Defines the status of a tenant joining a multitenant organization.
* @param value Value to set for the joinRequest property.
*/
public void setJoinRequest(@jakarta.annotation.Nullable final MultiTenantOrganizationJoinRequestRecord value) {
this.backingStore.set("joinRequest", value);
}
/**
* Sets the state property value. State of the multitenant organization. The possible values are: active, inactive, unknownFutureValue. active indicates the multitenant organization is created. inactive indicates the multitenant organization isn't created. Read-only.
* @param value Value to set for the state property.
*/
public void setState(@jakarta.annotation.Nullable final MultiTenantOrganizationState value) {
this.backingStore.set("state", value);
}
/**
* Sets the tenants property value. Defines tenants added to a multitenant organization.
* @param value Value to set for the tenants property.
*/
public void setTenants(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("tenants", value);
}
}