SearchResponse Class

Defines the structure returned as the result of an Invoke activity with Name of 'application/search'.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Constructor

SearchResponse(*, statusCode: int = 200, type: Literal['application/vnd.microsoft.search.searchResponse'] = 'application/vnd.microsoft.search.searchResponse', value: SearchInvokeResponseValue, **extra_data: Any)

Keyword-Only Parameters

Name Description
statusCode
Default value: 200
type
Default value: application/vnd.microsoft.search.searchResponse
value
Required

Attributes

model_config

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

model_config: ClassVar[ConfigDict] = {'alias_generator': AliasGenerator(alias=None, validation_alias=<staticmethod(<function CustomBaseModel.validation_alias_generator>)>, serialization_alias=<staticmethod(<function CustomBaseModel.serialization_alias_generator>)>), 'arbitrary_types_allowed': True, 'extra': 'allow', 'populate_by_name': True, 'serialize_by_alias': True, 'validate_by_alias': True, 'validate_by_name': True}

status_code

The response status code.

status_code: int

type

The type of this response.

type: Literal['application/vnd.microsoft.search.searchResponse']

value

The response value.

value: SearchInvokeResponseValue