Source code for gpp_client.generated.get_calls_for_proposals

from pydantic import Field

from .base_model import BaseModel
from .fragments import CallForProposalsDetails


[docs] class GetCallsForProposals(BaseModel): calls_for_proposals: "GetCallsForProposalsCallsForProposals" = Field( alias="callsForProposals" )
[docs] class GetCallsForProposalsCallsForProposals(BaseModel): has_more: bool = Field(alias="hasMore") matches: list["GetCallsForProposalsCallsForProposalsMatches"]
[docs] class GetCallsForProposalsCallsForProposalsMatches(CallForProposalsDetails): pass
GetCallsForProposals.model_rebuild() GetCallsForProposalsCallsForProposals.model_rebuild()