Class SslCertificateEntity
java.lang.Object
com.microsoft.graph.security.models.SslCertificateEntity
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class SslCertificateEntity
extends Object
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Ssl Certificate Entity.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Address.The Alternate Names.The Common Name.The Email.The Given Name.the OData type of the object as returned by the serviceThe Organization Name.The Organization Unit Name.The Serial Number.The Surname. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManagervoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
address
@SerializedName(value="address", alternate="Address") @Expose @Nullable public PhysicalAddress addressThe Address. A physical address of the entity. -
alternateNames
@SerializedName(value="alternateNames", alternate="AlternateNames") @Expose @Nullable public List<String> alternateNamesThe Alternate Names. Alternate names for this entity that are part of the certificate. -
commonName
@SerializedName(value="commonName", alternate="CommonName") @Expose @Nullable public String commonNameThe Common Name. A common name for this entity. -
email
The Email. An email for this entity. -
givenName
The Given Name. If the entity is a person, this is the person's given name (first name). -
organizationName
@SerializedName(value="organizationName", alternate="OrganizationName") @Expose @Nullable public String organizationNameThe Organization Name. If the entity is an organization, this is the name of the organization. -
organizationUnitName
@SerializedName(value="organizationUnitName", alternate="OrganizationUnitName") @Expose @Nullable public String organizationUnitNameThe Organization Unit Name. If the entity is an organization, this communicates if a unit in the organization is named on the entity. -
serialNumber
@SerializedName(value="serialNumber", alternate="SerialNumber") @Expose @Nullable public String serialNumberThe Serial Number. A serial number assigned to the entity; usually only available if the entity is the issuer. -
surname
The Surname. If the entity is a person, this is the person's surname (last name).
-
-
Constructor Details
-
SslCertificateEntity
public SslCertificateEntity()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManagerin interfacecom.microsoft.graph.serializer.IJsonBackedObject
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-