BatchOfIds¶
Request model for getting links by many IDs.
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| first_type | str | Type of the objects. | |
| first_ids | List[str] | Array of the object IDs with the same type. | |
| offset | int | Param says to skip that many links before beginning to return links. Default: 0. | [optional] |
| limit | int | Param says to limit the count of returned links. Default: 1000. | [optional] |
Example¶
from odm_api.models.batch_of_ids import BatchOfIds
# TODO update the JSON string below
json = "{}"
# create an instance of BatchOfIds from a JSON string
batch_of_ids_instance = BatchOfIds.from_json(json)
# print the JSON string representation of the object
print(BatchOfIds.to_json())
# convert the object into a dict
batch_of_ids_dict = batch_of_ids_instance.to_dict()
# create an instance of BatchOfIds from a dict
batch_of_ids_from_dict = BatchOfIds.from_dict(batch_of_ids_dict)