Class: Google::Cloud::Dialogflow::CX::V3::ListTestCasesRequest
- Inherits:
-
Object
- Object
- Google::Cloud::Dialogflow::CX::V3::ListTestCasesRequest
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/dialogflow/cx/v3/test_case.rb
Overview
The request message for TestCases.ListTestCases.
Defined Under Namespace
Modules: TestCaseView
Instance Attribute Summary collapse
-
#page_size ⇒ ::Integer
The maximum number of items to return in a single page.
-
#page_token ⇒ ::String
The next_page_token value returned from a previous list request.
-
#parent ⇒ ::String
Required.
-
#view ⇒ ::Google::Cloud::Dialogflow::CX::V3::ListTestCasesRequest::TestCaseView
Specifies whether response should include all fields or just the metadata.
Instance Attribute Details
#page_size ⇒ ::Integer
Returns The maximum number of items to return in a single page. By default 20. Note that when TestCaseView = FULL, the maximum page size allowed is 20. When TestCaseView = BASIC, the maximum page size allowed is 500.
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/test_case.rb', line 422 class ListTestCasesRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Specifies how much test case information to include in the response. module TestCaseView # The default / unset value. # The API will default to the BASIC view. TEST_CASE_VIEW_UNSPECIFIED = 0 # Include basic metadata about the test case, but not the conversation # turns. This is the default value. BASIC = 1 # Include everything. FULL = 2 end end |
#page_token ⇒ ::String
Returns The next_page_token value returned from a previous list request.
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/test_case.rb', line 422 class ListTestCasesRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Specifies how much test case information to include in the response. module TestCaseView # The default / unset value. # The API will default to the BASIC view. TEST_CASE_VIEW_UNSPECIFIED = 0 # Include basic metadata about the test case, but not the conversation # turns. This is the default value. BASIC = 1 # Include everything. FULL = 2 end end |
#parent ⇒ ::String
Returns Required. The agent to list all pages for.
Format: projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>
.
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/test_case.rb', line 422 class ListTestCasesRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Specifies how much test case information to include in the response. module TestCaseView # The default / unset value. # The API will default to the BASIC view. TEST_CASE_VIEW_UNSPECIFIED = 0 # Include basic metadata about the test case, but not the conversation # turns. This is the default value. BASIC = 1 # Include everything. FULL = 2 end end |
#view ⇒ ::Google::Cloud::Dialogflow::CX::V3::ListTestCasesRequest::TestCaseView
Returns Specifies whether response should include all fields or just the metadata.
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/test_case.rb', line 422 class ListTestCasesRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Specifies how much test case information to include in the response. module TestCaseView # The default / unset value. # The API will default to the BASIC view. TEST_CASE_VIEW_UNSPECIFIED = 0 # Include basic metadata about the test case, but not the conversation # turns. This is the default value. BASIC = 1 # Include everything. FULL = 2 end end |