| Name |
Type |
Description |
Notes |
| suggestion_ids |
List[str] |
Array of suggestion IDs to implement |
|
| platform |
str |
Platform type |
|
| credentials |
CustomCredentials |
|
|
| skip_content_verification |
bool |
Skip content change detection |
[optional] [default to False] |
| implementation_method |
str |
Implementation method |
[optional] [default to 'api'] |
from rankvectors.models.implementation_request import ImplementationRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ImplementationRequest from a JSON string
implementation_request_instance = ImplementationRequest.from_json(json)
# print the JSON string representation of the object
print(ImplementationRequest.to_json())
# convert the object into a dict
implementation_request_dict = implementation_request_instance.to_dict()
# create an instance of ImplementationRequest from a dict
implementation_request_from_dict = ImplementationRequest.from_dict(implementation_request_dict)
[Back to Model list] [Back to API list] [Back to README]