Internal¶
genjishimada_sdk.internal
¶
ClaimCreateRequest
¶
ClaimResponse
¶
JobStatusResponse
¶
Bases: Struct
Status information for asynchronous jobs.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
UUID
|
Unique job identifier. |
status |
Literal['processing', 'succeeded', 'failed', 'timeout', 'queued']
|
Current processing state. |
error_code |
str | None
|
Optional machine-readable error code. |
error_msg |
str | None
|
Optional human-readable error message. |
JobStatusUpdateRequest
¶
Bases: Struct
Payload for updating the status of an asynchronous job.
Attributes:
| Name | Type | Description |
|---|---|---|
status |
Literal['processing', 'succeeded', 'failed', 'timeout', 'queued']
|
New processing state to apply. |
error_code |
str | None
|
Optional machine-readable error code. |
error_msg |
str | None
|
Optional human-readable error message. |