Skip to content

Commit

Permalink
updated to FormKiQ API v1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mfriesen committed Apr 1, 2024
1 parent 43d2b83 commit f6d1215
Show file tree
Hide file tree
Showing 694 changed files with 38,096 additions and 4,741 deletions.
497 changes: 309 additions & 188 deletions .openapi-generator/FILES

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.2.0
7.4.0
193 changes: 177 additions & 16 deletions README.md

Large diffs are not rendered by default.

33 changes: 33 additions & 0 deletions docs/AccessAttribute.md
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)


Loading

0 comments on commit f6d1215

Please sign in to comment.