Source code for gpp_client.generated.get_target_by_id

from typing import Optional

from .base_model import BaseModel
from .fragments import TargetDetails, TargetProgramSummary


[docs] class GetTargetById(BaseModel): target: Optional["GetTargetByIdTarget"]
[docs] class GetTargetByIdTarget(TargetDetails, TargetProgramSummary): pass
GetTargetById.model_rebuild()