Struct gapi_grpc::google::cloud::dialogflow::cx::v3::ListTestCaseResultsRequest[][src]

pub struct ListTestCaseResultsRequest {
    pub parent: String,
    pub page_size: i32,
    pub page_token: String,
    pub filter: String,
}

The request message for [TestCases.ListTestCaseResults][google.cloud.dialogflow.cx.v3.TestCases.ListTestCaseResults].

Fields

parent: String

Required. The test case to list results for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/ testCases/<TestCase ID>. Specify a - as a wildcard for TestCase ID to list results across multiple test cases.

page_size: i32

The maximum number of items to return in a single page. By default 100 and at most 1000.

page_token: String

The next_page_token value returned from a previous list request.

filter: String

The filter expression used to filter test case results. See API Filtering.

The expression is case insensitive. Only ‘AND’ is supported for logical operators. The supported syntax is listed below in detail:

[AND ] … [AND latest]

The supported fields and operators are: field operator environment =, IN (Use value draft for draft environment) test_time >, <

latest only returns the latest test result in all results for each test case.

Examples:

Trait Implementations

impl Clone for ListTestCaseResultsRequest[src]

impl Debug for ListTestCaseResultsRequest[src]

impl Default for ListTestCaseResultsRequest[src]

impl Message for ListTestCaseResultsRequest[src]

impl PartialEq<ListTestCaseResultsRequest> for ListTestCaseResultsRequest[src]

impl StructuralPartialEq for ListTestCaseResultsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListTestCaseResultsRequest

impl Send for ListTestCaseResultsRequest

impl Sync for ListTestCaseResultsRequest

impl Unpin for ListTestCaseResultsRequest

impl UnwindSafe for ListTestCaseResultsRequest

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]