Source code for gpp_client.generated.get_call_for_proposals

from typing import Optional

from pydantic import Field

from .base_model import BaseModel
from .fragments import CallForProposalsDetails


[docs] class GetCallForProposals(BaseModel): call_for_proposals: Optional["GetCallForProposalsCallForProposals"] = Field( alias="callForProposals" )
[docs] class GetCallForProposalsCallForProposals(CallForProposalsDetails): pass
GetCallForProposals.model_rebuild()