Skip to content

Commit f6d1215

Browse files
committed
updated to FormKiQ API v1.14.0
1 parent 43d2b83 commit f6d1215

File tree

694 files changed

+38096
-4741
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

694 files changed

+38096
-4741
lines changed

.openapi-generator/FILES

Lines changed: 309 additions & 188 deletions
Large diffs are not rendered by default.

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.2.0
1+
7.4.0

README.md

Lines changed: 177 additions & 16 deletions
Large diffs are not rendered by default.

docs/AccessAttribute.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# AccessAttribute
2+
3+
Document Access Attribute (requires either: stringValue, numberValue, booleanValue)
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**key** | **str** | Attribute key | [optional]
10+
**string_value** | **str** | Attribute with string value | [optional]
11+
**number_value** | **float** | Attribute with number value | [optional]
12+
**boolean_value** | **bool** | Attribute with boolean value | [optional]
13+
14+
## Example
15+
16+
```python
17+
from formkiq_client.models.access_attribute import AccessAttribute
18+
19+
# TODO update the JSON string below
20+
json = "{}"
21+
# create an instance of AccessAttribute from a JSON string
22+
access_attribute_instance = AccessAttribute.from_json(json)
23+
# print the JSON string representation of the object
24+
print(AccessAttribute.to_json())
25+
26+
# convert the object into a dict
27+
access_attribute_dict = access_attribute_instance.to_dict()
28+
# create an instance of AccessAttribute from a dict
29+
access_attribute_form_dict = access_attribute.from_dict(access_attribute_dict)
30+
```
31+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
32+
33+

0 commit comments

Comments
 (0)