Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for textarea (0.21 sec)

  1. .github/DISCUSSION_TEMPLATE/questions.yml

          options:
            - label: I commit to help with one of those options 👆
              required: true
      - type: textarea
        id: example
        attributes:
          label: Example Code
          description: |
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Aug 03 15:59:41 GMT 2023
    - 5.8K bytes
    - Viewed (1)
  2. .github/ISSUE_TEMPLATE/privileged.yml

          description: Confirm that you are allowed to create an issue here.
          options:
            - label: I'm @tiangolo or he asked me directly to create an issue here.
              required: true
      - type: textarea
        id: content
        attributes:
          label: Issue Content
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Jan 31 14:02:52 GMT 2023
    - 889 bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/extra-models.md

    ```Python
    some_variable: PlaneItem | CarItem
    ```
    
    Mas se colocarmos isso em `response_model=PlaneItem | CarItem` teríamos um erro, pois o Python tentaria executar uma **operação inválida** entre `PlaneItem` e `CarItem` em vez de interpretar isso como uma anotação de tipo.
    
    ## Lista de modelos
    
    Da mesma forma, você pode declarar respostas de listas de objetos.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 7.8K bytes
    - Viewed (0)
Back to top