Source code for gpp_client.generated.update_observation_by_reference
from pydantic import Field
from .base_model import BaseModel
from .fragments import ObservationDetails
[docs]
class UpdateObservationByReference(BaseModel):
update_observations: "UpdateObservationByReferenceUpdateObservations" = Field(
alias="updateObservations"
)
[docs]
class UpdateObservationByReferenceUpdateObservations(BaseModel):
has_more: bool = Field(alias="hasMore")
observations: list["UpdateObservationByReferenceUpdateObservationsObservations"]
[docs]
class UpdateObservationByReferenceUpdateObservationsObservations(ObservationDetails):
pass
UpdateObservationByReference.model_rebuild()
UpdateObservationByReferenceUpdateObservations.model_rebuild()