|
| 1 | +// Template Source: BaseEntity.java.tt |
| 2 | +// ------------------------------------------------------------------------------ |
| 3 | +// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. |
| 4 | +// ------------------------------------------------------------------------------ |
| 5 | + |
| 6 | +package com.microsoft.graph.models; |
| 7 | +import com.microsoft.graph.serializer.ISerializer; |
| 8 | +import com.microsoft.graph.serializer.IJsonBackedObject; |
| 9 | +import com.microsoft.graph.serializer.AdditionalDataManager; |
| 10 | +import java.util.EnumSet; |
| 11 | + |
| 12 | + |
| 13 | +import com.google.gson.JsonObject; |
| 14 | +import com.google.gson.annotations.SerializedName; |
| 15 | +import com.google.gson.annotations.Expose; |
| 16 | +import javax.annotation.Nullable; |
| 17 | +import javax.annotation.Nonnull; |
| 18 | + |
| 19 | +// **NOTE** This file was generated by a tool and any changes will be overwritten. |
| 20 | + |
| 21 | +/** |
| 22 | + * The class for the Certification. |
| 23 | + */ |
| 24 | +public class Certification implements IJsonBackedObject { |
| 25 | + |
| 26 | + /** the OData type of the object as returned by the service */ |
| 27 | + @SerializedName("@odata.type") |
| 28 | + @Expose |
| 29 | + @Nullable |
| 30 | + public String oDataType; |
| 31 | + |
| 32 | + private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this); |
| 33 | + |
| 34 | + @Override |
| 35 | + @Nonnull |
| 36 | + public final AdditionalDataManager additionalDataManager() { |
| 37 | + return additionalDataManager; |
| 38 | + } |
| 39 | + |
| 40 | + /** |
| 41 | + * The Certification Details Url. |
| 42 | + * URL that shows certification details for the application. |
| 43 | + */ |
| 44 | + @SerializedName(value = "certificationDetailsUrl", alternate = {"CertificationDetailsUrl"}) |
| 45 | + @Expose |
| 46 | + @Nullable |
| 47 | + public String certificationDetailsUrl; |
| 48 | + |
| 49 | + /** |
| 50 | + * The Certification Expiration Date Time. |
| 51 | + * The timestamp when the current certification for the application will expire. |
| 52 | + */ |
| 53 | + @SerializedName(value = "certificationExpirationDateTime", alternate = {"CertificationExpirationDateTime"}) |
| 54 | + @Expose |
| 55 | + @Nullable |
| 56 | + public java.time.OffsetDateTime certificationExpirationDateTime; |
| 57 | + |
| 58 | + /** |
| 59 | + * The Is Certified By Microsoft. |
| 60 | + * Indicates whether the application is certified by Microsoft. |
| 61 | + */ |
| 62 | + @SerializedName(value = "isCertifiedByMicrosoft", alternate = {"IsCertifiedByMicrosoft"}) |
| 63 | + @Expose |
| 64 | + @Nullable |
| 65 | + public Boolean isCertifiedByMicrosoft; |
| 66 | + |
| 67 | + /** |
| 68 | + * The Is Publisher Attested. |
| 69 | + * Indicates whether the application has been self-attested by the application developer or the publisher. |
| 70 | + */ |
| 71 | + @SerializedName(value = "isPublisherAttested", alternate = {"IsPublisherAttested"}) |
| 72 | + @Expose |
| 73 | + @Nullable |
| 74 | + public Boolean isPublisherAttested; |
| 75 | + |
| 76 | + /** |
| 77 | + * The Last Certification Date Time. |
| 78 | + * The timestamp when the certification for the application was most recently added or updated. |
| 79 | + */ |
| 80 | + @SerializedName(value = "lastCertificationDateTime", alternate = {"LastCertificationDateTime"}) |
| 81 | + @Expose |
| 82 | + @Nullable |
| 83 | + public java.time.OffsetDateTime lastCertificationDateTime; |
| 84 | + |
| 85 | + |
| 86 | + /** |
| 87 | + * Sets the raw JSON object |
| 88 | + * |
| 89 | + * @param serializer the serializer |
| 90 | + * @param json the JSON object to set this object to |
| 91 | + */ |
| 92 | + public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) { |
| 93 | + |
| 94 | + } |
| 95 | +} |
0 commit comments