Package com.microsoft.graph.models
Class SelfSignedCertificate
java.lang.Object
com.microsoft.graph.models.SelfSignedCertificate
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class SelfSignedCertificate
extends Object
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Self Signed Certificate.
-
Field Summary
FieldsModifier and TypeFieldDescriptionbyte[]The Custom Key Identifier.The Display Name.The End Date Time.byte[]The Key.The Key Id.the OData type of the object as returned by the serviceThe Start Date Time.The Thumbprint.The Type.The Usage. -
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 -
customKeyIdentifier
@SerializedName(value="customKeyIdentifier", alternate="CustomKeyIdentifier") @Expose @Nullable public byte[] customKeyIdentifierThe Custom Key Identifier. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. -
endDateTime
@SerializedName(value="endDateTime", alternate="EndDateTime") @Expose @Nullable public OffsetDateTime endDateTimeThe End Date Time. -
key
@SerializedName(value="key", alternate="Key") @Expose @Nullable public byte[] keyThe Key. -
keyId
The Key Id. -
startDateTime
@SerializedName(value="startDateTime", alternate="StartDateTime") @Expose @Nullable public OffsetDateTime startDateTimeThe Start Date Time. -
thumbprint
@SerializedName(value="thumbprint", alternate="Thumbprint") @Expose @Nullable public String thumbprintThe Thumbprint. -
type
The Type. -
usage
The Usage.
-
-
Constructor Details
-
SelfSignedCertificate
public SelfSignedCertificate()
-
-
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
-