Source code for gpp_client.generated.get_observation_attachments_by_id
from typing import Optional
from .base_model import BaseModel
from .fragments import AttachmentDetails
[docs]
class GetObservationAttachmentsById(BaseModel):
observation: Optional["GetObservationAttachmentsByIdObservation"]
[docs]
class GetObservationAttachmentsByIdObservation(BaseModel):
attachments: list["GetObservationAttachmentsByIdObservationAttachments"]
[docs]
class GetObservationAttachmentsByIdObservationAttachments(AttachmentDetails):
pass
GetObservationAttachmentsById.model_rebuild()
GetObservationAttachmentsByIdObservation.model_rebuild()