|
| 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.callrecords.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 Direct Routing Log Row. |
| 23 | + */ |
| 24 | +public class DirectRoutingLogRow 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 Callee Number. |
| 42 | + * |
| 43 | + */ |
| 44 | + @SerializedName(value = "calleeNumber", alternate = {"CalleeNumber"}) |
| 45 | + @Expose |
| 46 | + @Nullable |
| 47 | + public String calleeNumber; |
| 48 | + |
| 49 | + /** |
| 50 | + * The Call End Sub Reason. |
| 51 | + * |
| 52 | + */ |
| 53 | + @SerializedName(value = "callEndSubReason", alternate = {"CallEndSubReason"}) |
| 54 | + @Expose |
| 55 | + @Nullable |
| 56 | + public Integer callEndSubReason; |
| 57 | + |
| 58 | + /** |
| 59 | + * The Caller Number. |
| 60 | + * |
| 61 | + */ |
| 62 | + @SerializedName(value = "callerNumber", alternate = {"CallerNumber"}) |
| 63 | + @Expose |
| 64 | + @Nullable |
| 65 | + public String callerNumber; |
| 66 | + |
| 67 | + /** |
| 68 | + * The Call Type. |
| 69 | + * |
| 70 | + */ |
| 71 | + @SerializedName(value = "callType", alternate = {"CallType"}) |
| 72 | + @Expose |
| 73 | + @Nullable |
| 74 | + public String callType; |
| 75 | + |
| 76 | + /** |
| 77 | + * The Correlation Id. |
| 78 | + * |
| 79 | + */ |
| 80 | + @SerializedName(value = "correlationId", alternate = {"CorrelationId"}) |
| 81 | + @Expose |
| 82 | + @Nullable |
| 83 | + public String correlationId; |
| 84 | + |
| 85 | + /** |
| 86 | + * The Duration. |
| 87 | + * |
| 88 | + */ |
| 89 | + @SerializedName(value = "duration", alternate = {"Duration"}) |
| 90 | + @Expose |
| 91 | + @Nullable |
| 92 | + public Integer duration; |
| 93 | + |
| 94 | + /** |
| 95 | + * The End Date Time. |
| 96 | + * |
| 97 | + */ |
| 98 | + @SerializedName(value = "endDateTime", alternate = {"EndDateTime"}) |
| 99 | + @Expose |
| 100 | + @Nullable |
| 101 | + public java.time.OffsetDateTime endDateTime; |
| 102 | + |
| 103 | + /** |
| 104 | + * The Failure Date Time. |
| 105 | + * |
| 106 | + */ |
| 107 | + @SerializedName(value = "failureDateTime", alternate = {"FailureDateTime"}) |
| 108 | + @Expose |
| 109 | + @Nullable |
| 110 | + public java.time.OffsetDateTime failureDateTime; |
| 111 | + |
| 112 | + /** |
| 113 | + * The Final Sip Code. |
| 114 | + * |
| 115 | + */ |
| 116 | + @SerializedName(value = "finalSipCode", alternate = {"FinalSipCode"}) |
| 117 | + @Expose |
| 118 | + @Nullable |
| 119 | + public Integer finalSipCode; |
| 120 | + |
| 121 | + /** |
| 122 | + * The Final Sip Code Phrase. |
| 123 | + * |
| 124 | + */ |
| 125 | + @SerializedName(value = "finalSipCodePhrase", alternate = {"FinalSipCodePhrase"}) |
| 126 | + @Expose |
| 127 | + @Nullable |
| 128 | + public String finalSipCodePhrase; |
| 129 | + |
| 130 | + /** |
| 131 | + * The Id. |
| 132 | + * |
| 133 | + */ |
| 134 | + @SerializedName(value = "id", alternate = {"Id"}) |
| 135 | + @Expose |
| 136 | + @Nullable |
| 137 | + public String id; |
| 138 | + |
| 139 | + /** |
| 140 | + * The Invite Date Time. |
| 141 | + * |
| 142 | + */ |
| 143 | + @SerializedName(value = "inviteDateTime", alternate = {"InviteDateTime"}) |
| 144 | + @Expose |
| 145 | + @Nullable |
| 146 | + public java.time.OffsetDateTime inviteDateTime; |
| 147 | + |
| 148 | + /** |
| 149 | + * The Media Bypass Enabled. |
| 150 | + * |
| 151 | + */ |
| 152 | + @SerializedName(value = "mediaBypassEnabled", alternate = {"MediaBypassEnabled"}) |
| 153 | + @Expose |
| 154 | + @Nullable |
| 155 | + public Boolean mediaBypassEnabled; |
| 156 | + |
| 157 | + /** |
| 158 | + * The Media Path Location. |
| 159 | + * |
| 160 | + */ |
| 161 | + @SerializedName(value = "mediaPathLocation", alternate = {"MediaPathLocation"}) |
| 162 | + @Expose |
| 163 | + @Nullable |
| 164 | + public String mediaPathLocation; |
| 165 | + |
| 166 | + /** |
| 167 | + * The Signaling Location. |
| 168 | + * |
| 169 | + */ |
| 170 | + @SerializedName(value = "signalingLocation", alternate = {"SignalingLocation"}) |
| 171 | + @Expose |
| 172 | + @Nullable |
| 173 | + public String signalingLocation; |
| 174 | + |
| 175 | + /** |
| 176 | + * The Start Date Time. |
| 177 | + * |
| 178 | + */ |
| 179 | + @SerializedName(value = "startDateTime", alternate = {"StartDateTime"}) |
| 180 | + @Expose |
| 181 | + @Nullable |
| 182 | + public java.time.OffsetDateTime startDateTime; |
| 183 | + |
| 184 | + /** |
| 185 | + * The Successful Call. |
| 186 | + * |
| 187 | + */ |
| 188 | + @SerializedName(value = "successfulCall", alternate = {"SuccessfulCall"}) |
| 189 | + @Expose |
| 190 | + @Nullable |
| 191 | + public Boolean successfulCall; |
| 192 | + |
| 193 | + /** |
| 194 | + * The Trunk Fully Qualified Domain Name. |
| 195 | + * |
| 196 | + */ |
| 197 | + @SerializedName(value = "trunkFullyQualifiedDomainName", alternate = {"TrunkFullyQualifiedDomainName"}) |
| 198 | + @Expose |
| 199 | + @Nullable |
| 200 | + public String trunkFullyQualifiedDomainName; |
| 201 | + |
| 202 | + /** |
| 203 | + * The User Display Name. |
| 204 | + * |
| 205 | + */ |
| 206 | + @SerializedName(value = "userDisplayName", alternate = {"UserDisplayName"}) |
| 207 | + @Expose |
| 208 | + @Nullable |
| 209 | + public String userDisplayName; |
| 210 | + |
| 211 | + /** |
| 212 | + * The User Id. |
| 213 | + * |
| 214 | + */ |
| 215 | + @SerializedName(value = "userId", alternate = {"UserId"}) |
| 216 | + @Expose |
| 217 | + @Nullable |
| 218 | + public String userId; |
| 219 | + |
| 220 | + /** |
| 221 | + * The User Principal Name. |
| 222 | + * |
| 223 | + */ |
| 224 | + @SerializedName(value = "userPrincipalName", alternate = {"UserPrincipalName"}) |
| 225 | + @Expose |
| 226 | + @Nullable |
| 227 | + public String userPrincipalName; |
| 228 | + |
| 229 | + |
| 230 | + /** |
| 231 | + * Sets the raw JSON object |
| 232 | + * |
| 233 | + * @param serializer the serializer |
| 234 | + * @param json the JSON object to set this object to |
| 235 | + */ |
| 236 | + public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) { |
| 237 | + |
| 238 | + } |
| 239 | +} |
0 commit comments