Class TopicsListResult
- java.lang.Object
-
- com.azure.resourcemanager.eventgrid.models.TopicsListResult
-
public final class TopicsListResult extends Object
Result of the List Topics operation.
-
-
Constructor Summary
Constructors Constructor Description TopicsListResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringnextLink()Get the nextLink property: A link for the next page of topics.voidvalidate()Validates the instance.List<TopicInner>value()Get the value property: A collection of Topics.TopicsListResultwithNextLink(String nextLink)Set the nextLink property: A link for the next page of topics.TopicsListResultwithValue(List<TopicInner> value)Set the value property: A collection of Topics.
-
-
-
Method Detail
-
value
public List<TopicInner> value()
Get the value property: A collection of Topics.- Returns:
- the value value.
-
withValue
public TopicsListResult withValue(List<TopicInner> value)
Set the value property: A collection of Topics.- Parameters:
value- the value value to set.- Returns:
- the TopicsListResult object itself.
-
nextLink
public String nextLink()
Get the nextLink property: A link for the next page of topics.- Returns:
- the nextLink value.
-
withNextLink
public TopicsListResult withNextLink(String nextLink)
Set the nextLink property: A link for the next page of topics.- Parameters:
nextLink- the nextLink value to set.- Returns:
- the TopicsListResult object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-