miro_api.models.export_job_status
Miro Developer Platform
### Miro Developer Platform concepts - New to the Miro Developer Platform? Interested in learning more about platform concepts?? Read our introduction page and familiarize yourself with the Miro Developer Platform capabilities in a few minutes. ### Getting started with the Miro REST API - Quickstart (video): try the REST API in less than 3 minutes. - Quickstart (article): get started and try the REST API in less than 3 minutes. ### Miro REST API tutorials Check out our how-to articles with step-by-step instructions and code examples so you can: - Get started with OAuth 2.0 and Miro ### Miro App Examples Clone our Miro App Examples repository to get inspiration, customize, and explore apps built on top of Miro's Developer Platform 2.0.
The version of the OpenAPI document: v2.0 Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
1# coding: utf-8 2 3""" 4Miro Developer Platform 5 6<img src=\"https://content.pstmn.io/47449ea6-0ef7-4af2-bac1-e58a70e61c58/aW1hZ2UucG5n\" width=\"1685\" height=\"593\"> ### Miro Developer Platform concepts - New to the Miro Developer Platform? Interested in learning more about platform concepts?? [Read our introduction page](https://beta.developers.miro.com/docs/introduction) and familiarize yourself with the Miro Developer Platform capabilities in a few minutes. ### Getting started with the Miro REST API - [Quickstart (video):](https://beta.developers.miro.com/docs/try-out-the-rest-api-in-less-than-3-minutes) try the REST API in less than 3 minutes. - [Quickstart (article):](https://beta.developers.miro.com/docs/build-your-first-hello-world-app-1) get started and try the REST API in less than 3 minutes. ### Miro REST API tutorials Check out our how-to articles with step-by-step instructions and code examples so you can: - [Get started with OAuth 2.0 and Miro](https://beta.developers.miro.com/docs/getting-started-with-oauth) ### Miro App Examples Clone our [Miro App Examples repository](https://github.com/miroapp/app-examples) to get inspiration, customize, and explore apps built on top of Miro's Developer Platform 2.0. 7 8The version of the OpenAPI document: v2.0 9Generated by OpenAPI Generator (https://openapi-generator.tech) 10 11Do not edit the class manually. 12""" # noqa: E501 13 14from __future__ import annotations 15import json 16from enum import Enum 17from typing_extensions import Self 18 19 20class ExportJobStatus(str, Enum): 21 """ 22 Indicates the current state of the board export job. Possible values: `CREATED`: the job has been created but not yet started. Retry the status call after some time. `IN_PROGRESS`: the job is in progress, and the results are not ready yet. Retry the status call after some time. `CANCELLED`: the job has been cancelled and will not produce any more results. `FINISHED`: the job is complete. You can now get results for the board export job. 23 """ 24 25 """ 26 allowed enum values 27 """ 28 CREATED = "CREATED" 29 IN_PROGRESS = "IN_PROGRESS" 30 CANCELLED = "CANCELLED" 31 FINISHED = "FINISHED" 32 33 @classmethod 34 def from_json(cls, json_str: str) -> Self: 35 """Create an instance of ExportJobStatus from a JSON string""" 36 return cls(json.loads(json_str))
21class ExportJobStatus(str, Enum): 22 """ 23 Indicates the current state of the board export job. Possible values: `CREATED`: the job has been created but not yet started. Retry the status call after some time. `IN_PROGRESS`: the job is in progress, and the results are not ready yet. Retry the status call after some time. `CANCELLED`: the job has been cancelled and will not produce any more results. `FINISHED`: the job is complete. You can now get results for the board export job. 24 """ 25 26 """ 27 allowed enum values 28 """ 29 CREATED = "CREATED" 30 IN_PROGRESS = "IN_PROGRESS" 31 CANCELLED = "CANCELLED" 32 FINISHED = "FINISHED" 33 34 @classmethod 35 def from_json(cls, json_str: str) -> Self: 36 """Create an instance of ExportJobStatus from a JSON string""" 37 return cls(json.loads(json_str))
Indicates the current state of the board export job. Possible values: CREATED: the job has been created but not yet started. Retry the status call after some time. IN_PROGRESS: the job is in progress, and the results are not ready yet. Retry the status call after some time. CANCELLED: the job has been cancelled and will not produce any more results. FINISHED: the job is complete. You can now get results for the board export job.
34 @classmethod 35 def from_json(cls, json_str: str) -> Self: 36 """Create an instance of ExportJobStatus from a JSON string""" 37 return cls(json.loads(json_str))
Create an instance of ExportJobStatus from a JSON string
Inherited Members
- enum.Enum
- name
- value
- builtins.str
- encode
- replace
- split
- rsplit
- join
- capitalize
- casefold
- title
- center
- count
- expandtabs
- find
- partition
- index
- ljust
- lower
- lstrip
- rfind
- rindex
- rjust
- rstrip
- rpartition
- splitlines
- strip
- swapcase
- translate
- upper
- startswith
- endswith
- removeprefix
- removesuffix
- isascii
- islower
- isupper
- istitle
- isspace
- isdecimal
- isdigit
- isnumeric
- isalpha
- isalnum
- isidentifier
- isprintable
- zfill
- format
- format_map
- maketrans