Struct google_api_proto::google::cloud::dialogflow::cx::v3::ListTestCaseResultsRequest
source · pub struct ListTestCaseResultsRequest {
pub parent: String,
pub page_size: i32,
pub page_token: String,
pub filter: String,
}
Expand description
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:
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:
- “environment=draft AND latest” matches the latest test result for each test case in the draft environment.
- “environment IN (e1,e2)” matches any test case results with an environment resource name of either “e1” or “e2”.
- “test_time > 1602540713” matches any test case results with test time later than a unix timestamp in seconds 1602540713.
Trait Implementations§
source§impl Clone for ListTestCaseResultsRequest
impl Clone for ListTestCaseResultsRequest
source§fn clone(&self) -> ListTestCaseResultsRequest
fn clone(&self) -> ListTestCaseResultsRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListTestCaseResultsRequest
impl Debug for ListTestCaseResultsRequest
source§impl Default for ListTestCaseResultsRequest
impl Default for ListTestCaseResultsRequest
source§impl Message for ListTestCaseResultsRequest
impl Message for ListTestCaseResultsRequest
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for ListTestCaseResultsRequest
impl PartialEq for ListTestCaseResultsRequest
source§fn eq(&self, other: &ListTestCaseResultsRequest) -> bool
fn eq(&self, other: &ListTestCaseResultsRequest) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListTestCaseResultsRequest
Auto Trait Implementations§
impl Freeze for ListTestCaseResultsRequest
impl RefUnwindSafe for ListTestCaseResultsRequest
impl Send for ListTestCaseResultsRequest
impl Sync for ListTestCaseResultsRequest
impl Unpin for ListTestCaseResultsRequest
impl UnwindSafe for ListTestCaseResultsRequest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request