Package com.microsoft.graph.models
Class IpNamedLocation
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.NamedLocation
com.microsoft.graph.models.IpNamedLocation
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class IpNamedLocation
extends NamedLocation
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Ip Named Location.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Ip Ranges.The Is Trusted.Fields inherited from class com.microsoft.graph.models.NamedLocation
createdDateTime, displayName, modifiedDateTime
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
ipRanges
@SerializedName(value="ipRanges", alternate="IpRanges") @Expose @Nullable public List<IpRange> ipRangesThe Ip Ranges. List of IP address ranges in IPv4 CIDR format (e.g. 1.2.3.4/32) or any allowable IPv6 format from IETF RFC596. Required. -
isTrusted
@SerializedName(value="isTrusted", alternate="IsTrusted") @Expose @Nullable public Boolean isTrustedThe Is Trusted. true if this location is explicitly trusted. Optional. Default value is false.
-
-
Constructor Details
-
IpNamedLocation
public IpNamedLocation()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classNamedLocation
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-