Share via


ActivityRunsQueryResponseInner Class

  • java.lang.Object
    • com.azure.resourcemanager.datafactory.fluent.models.ActivityRunsQueryResponseInner

Implements

public final class ActivityRunsQueryResponseInner
implements JsonSerializable<ActivityRunsQueryResponseInner>

A list activity runs.

Constructor Summary

Constructor Description
ActivityRunsQueryResponseInner()

Creates an instance of ActivityRunsQueryResponseInner class.

Method Summary

Modifier and Type Method and Description
String continuationToken()

Get the continuationToken property: The continuation token for getting the next page of results, if any remaining results exist, null otherwise.

static ActivityRunsQueryResponseInner fromJson(JsonReader jsonReader)

Reads an instance of ActivityRunsQueryResponseInner from the JsonReader.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

List<ActivityRun> value()

Get the value property: List of activity runs.

ActivityRunsQueryResponseInner withContinuationToken(String continuationToken)

Set the continuationToken property: The continuation token for getting the next page of results, if any remaining results exist, null otherwise.

ActivityRunsQueryResponseInner withValue(List<ActivityRun> value)

Set the value property: List of activity runs.

Methods inherited from java.lang.Object

Constructor Details

ActivityRunsQueryResponseInner

public ActivityRunsQueryResponseInner()

Creates an instance of ActivityRunsQueryResponseInner class.

Method Details

continuationToken

public String continuationToken()

Get the continuationToken property: The continuation token for getting the next page of results, if any remaining results exist, null otherwise.

Returns:

the continuationToken value.

fromJson

public static ActivityRunsQueryResponseInner fromJson(JsonReader jsonReader)

Reads an instance of ActivityRunsQueryResponseInner from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of ActivityRunsQueryResponseInner if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If the deserialized JSON object was missing any required properties.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

value

public List<ActivityRun> value()

Get the value property: List of activity runs.

Returns:

the value value.

withContinuationToken

public ActivityRunsQueryResponseInner withContinuationToken(String continuationToken)

Set the continuationToken property: The continuation token for getting the next page of results, if any remaining results exist, null otherwise.

Parameters:

continuationToken - the continuationToken value to set.

Returns:

the ActivityRunsQueryResponseInner object itself.

withValue

public ActivityRunsQueryResponseInner withValue(List<ActivityRun> value)

Set the value property: List of activity runs.

Parameters:

value - the value value to set.

Returns:

the ActivityRunsQueryResponseInner object itself.

Applies to