-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
694 changed files
with
38,096 additions
and
4,741 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.2.0 | ||
7.4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# AccessAttribute | ||
|
||
Document Access Attribute (requires either: stringValue, numberValue, booleanValue) | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**key** | **str** | Attribute key | [optional] | ||
**string_value** | **str** | Attribute with string value | [optional] | ||
**number_value** | **float** | Attribute with number value | [optional] | ||
**boolean_value** | **bool** | Attribute with boolean value | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from formkiq_client.models.access_attribute import AccessAttribute | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AccessAttribute from a JSON string | ||
access_attribute_instance = AccessAttribute.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AccessAttribute.to_json()) | ||
|
||
# convert the object into a dict | ||
access_attribute_dict = access_attribute_instance.to_dict() | ||
# create an instance of AccessAttribute from a dict | ||
access_attribute_form_dict = access_attribute.from_dict(access_attribute_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
Oops, something went wrong.