You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/HelloAssoApiV5ModelsFormsFormQuickCreateRequest.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,7 @@ Name | Type | Description | Notes
42
42
**project_target_country** | **str** | 3 letter country code | [optional]
43
43
**allow_organism_payer** | **bool** | Whether users are allowed to contribute to this form through an organism (only for donation and crowdfunding). | [optional]
44
44
**allow_individual_payer** | **bool** | Whether user are allowed to personally contribute to this form (only for donation and crowdfunding). | [optional]
45
+
**display_version** | **int** | The form display version (only for donation). | [optional]
45
46
**max_entries** | **int** | Indicates the maximum available entries for the whole form. Null means unlimited entries. | [optional]
Copy file name to clipboardExpand all lines: helloasso_python/models/hello_asso_api_v5_models_forms_form_quick_create_request.py
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -69,8 +69,9 @@ class HelloAssoApiV5ModelsFormsFormQuickCreateRequest(BaseModel):
69
69
project_target_country: Optional[Annotated[str, Field(min_length=3, strict=True, max_length=3)]] =Field(default=None, description="3 letter country code", alias="projectTargetCountry")
70
70
allow_organism_payer: Optional[StrictBool] =Field(default=None, description="Whether users are allowed to contribute to this form through an organism (only for donation and crowdfunding).", alias="allowOrganismPayer")
71
71
allow_individual_payer: Optional[StrictBool] =Field(default=None, description="Whether user are allowed to personally contribute to this form (only for donation and crowdfunding).", alias="allowIndividualPayer")
72
+
display_version: Optional[StrictInt] =Field(default=None, description="The form display version (only for donation).", alias="displayVersion")
72
73
max_entries: Optional[StrictInt] =Field(default=None, description="Indicates the maximum available entries for the whole form. Null means unlimited entries.", alias="maxEntries")
0 commit comments