Class ListActiveBreakpointsResponse
Response for listing active breakpoints.
Implements
Inherited Members
Namespace: Google.Apis.CloudDebugger.v2.Data
Assembly: Google.Apis.CloudDebugger.v2.dll
Syntax
public class ListActiveBreakpointsResponse : IDirectResponseSchema
Properties
Breakpoints
List of all active breakpoints. The fields id
and location
are guaranteed to be set on each breakpoint.
Declaration
[JsonProperty("breakpoints")]
public virtual IList<Breakpoint> Breakpoints { get; set; }
Property Value
Type | Description |
---|---|
IList<Breakpoint> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
NextWaitToken
A token that can be used in the next method call to block until the list of breakpoints changes.
Declaration
[JsonProperty("nextWaitToken")]
public virtual string NextWaitToken { get; set; }
Property Value
Type | Description |
---|---|
string |
WaitExpired
If set to true
, indicates that there is no change to the list of active breakpoints and the
server-selected timeout has expired. The breakpoints
field would be empty and should be ignored.
Declaration
[JsonProperty("waitExpired")]
public virtual bool? WaitExpired { get; set; }
Property Value
Type | Description |
---|---|
bool? |