Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

File metadata and controls

33 lines (24 loc) · 1.19 KB

ListMigrationsResponse

Response for listing migrations.

Properties

Name Type Description Notes
results List[GetMigrationResponse] List of migrations
total int Total count matching filters
limit int Results limit
offset int Results offset

Example

from mixpeek.models.list_migrations_response import ListMigrationsResponse

# TODO update the JSON string below
json = "{}"
# create an instance of ListMigrationsResponse from a JSON string
list_migrations_response_instance = ListMigrationsResponse.from_json(json)
# print the JSON string representation of the object
print(ListMigrationsResponse.to_json())

# convert the object into a dict
list_migrations_response_dict = list_migrations_response_instance.to_dict()
# create an instance of ListMigrationsResponse from a dict
list_migrations_response_from_dict = ListMigrationsResponse.from_dict(list_migrations_response_dict)

[Back to Model list] [Back to API list] [Back to README]