-
Notifications
You must be signed in to change notification settings - Fork 0
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
768 changed files
with
28,684 additions
and
4,815 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# AIGeneratedImage | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **int** | | [readonly] | ||
**user** | **int** | edX user ID | | ||
**image** | **str** | | | ||
**platform** | **int** | | | ||
**prompt** | **str** | | [optional] | ||
**model** | **str** | | [optional] | ||
**provider** | **str** | | [optional] | ||
**date_created** | **datetime** | | [readonly] | ||
|
||
## Example | ||
|
||
```python | ||
from iblai.models.ai_generated_image import AIGeneratedImage | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AIGeneratedImage from a JSON string | ||
ai_generated_image_instance = AIGeneratedImage.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AIGeneratedImage.to_json()) | ||
|
||
# convert the object into a dict | ||
ai_generated_image_dict = ai_generated_image_instance.to_dict() | ||
# create an instance of AIGeneratedImage from a dict | ||
ai_generated_image_from_dict = AIGeneratedImage.from_dict(ai_generated_image_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) | ||
|
||
|
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
Oops, something went wrong.