Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for webhook (0.14 sec)

  1. fastapi/openapi/utils.py

                        )
                    if path_definitions:
                        definitions.update(path_definitions)
        for webhook in webhooks or []:
            if isinstance(webhook, routing.APIRoute):
                result = get_openapi_path(
                    route=webhook,
                    operation_ids=operation_ids,
                    schema_generator=schema_generator,
                    model_name_map=model_name_map,
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 21.8K bytes
    - Viewed (0)
  2. fastapi/applications.py

                )
            self.webhooks: Annotated[
                routing.APIRouter,
                Doc(
                    """
                    The `app.webhooks` attribute is an `APIRouter` with the *path
                    operations* that will be used just for documentation of webhooks.
    
                    Read more about it in the
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
  3. fastapi/openapi/models.py

        info: Info
        jsonSchemaDialect: Optional[str] = None
        servers: Optional[List[Server]] = None
        # Using Any for Specification Extensions
        paths: Optional[Dict[str, Union[PathItem, Any]]] = None
        webhooks: Optional[Dict[str, Union[PathItem, Reference]]] = None
        components: Optional[Components] = None
        security: Optional[List[Dict[str, List[str]]]] = None
        tags: Optional[List[Tag]] = None
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 22:49:33 GMT 2024
    - 15K bytes
    - Viewed (1)
Back to top