Package odata.msgraph.client.complex
Class UserExperienceAnalyticsInsight
- java.lang.Object
-
- odata.msgraph.client.complex.UserExperienceAnalyticsInsight
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataType
public class UserExperienceAnalyticsInsight extends Object implements com.github.davidmoten.odata.client.ODataType
“The user experience analytics insight is the recomendation to improve the user experience analytics score.”
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUserExperienceAnalyticsInsight.Builder
-
Field Summary
Fields Modifier and Type Field Description protected com.github.davidmoten.odata.client.ContextPathcontextPathprotected StringinsightIdprotected StringodataTypeprotected UserExperienceAnalyticsInsightSeverityseverityprotected com.github.davidmoten.odata.client.internal.UnmappedFieldsImplunmappedFieldsprotected StringuserExperienceAnalyticsMetricIdprotected List<UserExperienceAnalyticsInsightValue>valuesprotected StringvaluesNextLink
-
Constructor Summary
Constructors Modifier Constructor Description protectedUserExperienceAnalyticsInsight()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UserExperienceAnalyticsInsight.Builderbuilder()Returns a builder which is used to create a new instance of this class (given that this class is immutable).Optional<String>getInsightId()“The unique identifier of the user experience analytics insight.”Optional<UserExperienceAnalyticsInsightSeverity>getSeverity()“The severity of the user experience analytics insight.com.github.davidmoten.odata.client.UnmappedFieldsgetUnmappedFields()Optional<String>getUserExperienceAnalyticsMetricId()“The unique identifier of the user experience analytics metric.”com.github.davidmoten.odata.client.CollectionPage<UserExperienceAnalyticsInsightValue>getValues()“The value of the user experience analytics insight.”com.github.davidmoten.odata.client.CollectionPage<UserExperienceAnalyticsInsightValue>getValues(com.github.davidmoten.odata.client.HttpRequestOptions options)“The value of the user experience analytics insight.”StringodataTypeName()voidpostInject(boolean addKeysToContextPath)StringtoString()UserExperienceAnalyticsInsightwithInsightId(String insightId)Returns an immutable copy ofthiswith just theinsightIdfield changed.UserExperienceAnalyticsInsightwithSeverity(UserExperienceAnalyticsInsightSeverity severity)Returns an immutable copy ofthiswith just theseverityfield changed.UserExperienceAnalyticsInsightwithUnmappedField(String name, Object value)UserExperienceAnalyticsInsightwithUserExperienceAnalyticsMetricId(String userExperienceAnalyticsMetricId)Returns an immutable copy ofthiswith just theuserExperienceAnalyticsMetricIdfield changed.
-
-
-
Field Detail
-
contextPath
protected com.github.davidmoten.odata.client.ContextPath contextPath
-
unmappedFields
protected com.github.davidmoten.odata.client.internal.UnmappedFieldsImpl unmappedFields
-
odataType
protected String odataType
-
insightId
protected String insightId
-
severity
protected UserExperienceAnalyticsInsightSeverity severity
-
userExperienceAnalyticsMetricId
protected String userExperienceAnalyticsMetricId
-
values
protected List<UserExperienceAnalyticsInsightValue> values
-
valuesNextLink
protected String valuesNextLink
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType
-
getInsightId
public Optional<String> getInsightId()
“The unique identifier of the user experience analytics insight.”- Returns:
- property insightId
-
withInsightId
public UserExperienceAnalyticsInsight withInsightId(String insightId)
Returns an immutable copy ofthiswith just theinsightIdfield changed. Field description below. The field name is also added to an internal map of changed fields in the returned object so that whenthis.patch()is called (if available)on the returned object only the changed fields are submitted.“The unique identifier of the user experience analytics insight.”
- Parameters:
insightId- new value ofinsightIdfield (as defined in service metadata)- Returns:
- immutable copy of
thiswith just theinsightIdfield changed
-
getSeverity
public Optional<UserExperienceAnalyticsInsightSeverity> getSeverity()
“The severity of the user experience analytics insight. Possible values are: none , informational, warning, error. None by default.”- Returns:
- property severity
-
withSeverity
public UserExperienceAnalyticsInsight withSeverity(UserExperienceAnalyticsInsightSeverity severity)
Returns an immutable copy ofthiswith just theseverityfield changed. Field description below. The field name is also added to an internal map of changed fields in the returned object so that whenthis.patch()is called (if available)on the returned object only the changed fields are submitted.“The severity of the user experience analytics insight. Possible values are: none , informational, warning, error. None by default.”
- Parameters:
severity- new value ofseverityfield (as defined in service metadata)- Returns:
- immutable copy of
thiswith just theseverityfield changed
-
getUserExperienceAnalyticsMetricId
public Optional<String> getUserExperienceAnalyticsMetricId()
“The unique identifier of the user experience analytics metric.”- Returns:
- property userExperienceAnalyticsMetricId
-
withUserExperienceAnalyticsMetricId
public UserExperienceAnalyticsInsight withUserExperienceAnalyticsMetricId(String userExperienceAnalyticsMetricId)
Returns an immutable copy ofthiswith just theuserExperienceAnalyticsMetricIdfield changed. Field description below. The field name is also added to an internal map of changed fields in the returned object so that whenthis.patch()is called (if available)on the returned object only the changed fields are submitted.“The unique identifier of the user experience analytics metric.”
- Parameters:
userExperienceAnalyticsMetricId- new value ofuserExperienceAnalyticsMetricIdfield (as defined in service metadata)- Returns:
- immutable copy of
thiswith just theuserExperienceAnalyticsMetricIdfield changed
-
getValues
public com.github.davidmoten.odata.client.CollectionPage<UserExperienceAnalyticsInsightValue> getValues()
“The value of the user experience analytics insight.”- Returns:
- property values
-
getValues
public com.github.davidmoten.odata.client.CollectionPage<UserExperienceAnalyticsInsightValue> getValues(com.github.davidmoten.odata.client.HttpRequestOptions options)
“The value of the user experience analytics insight.”- Parameters:
options- specify connect and read timeouts- Returns:
- property values
-
withUnmappedField
public UserExperienceAnalyticsInsight withUnmappedField(String name, Object value)
-
getUnmappedFields
public com.github.davidmoten.odata.client.UnmappedFields getUnmappedFields()
- Specified by:
getUnmappedFieldsin interfacecom.github.davidmoten.odata.client.ODataType
-
postInject
public void postInject(boolean addKeysToContextPath)
- Specified by:
postInjectin interfacecom.github.davidmoten.odata.client.ODataType
-
builder
public static UserExperienceAnalyticsInsight.Builder builder()
Returns a builder which is used to create a new instance of this class (given that this class is immutable).- Returns:
- a new Builder for this class
-
-