Kitaru

CohortVersionsResource

Cohort version API methods.

Functions

func__init__(self, client) -> None

Initialize the resource.

paramself
paramclientKitaruAPIClient

API client used to send requests.

Returns

None
funcget(self, cohort_version_id) -> CohortVersionResponse

Get a cohort version by id.

paramself
paramcohort_version_iduuid.UUID

Id of the cohort version.

Returns

kitaru.api_models.v1.cohort_version.CohortVersionResponse

Stored cohort version.

funcupdate(self, cohort_version_id, request) -> CohortVersionResponse

Update a cohort version.

paramself
paramcohort_version_iduuid.UUID

Id of the cohort version.

paramrequestCohortVersionUpdateRequest

Cohort version update request, unset fields stay unchanged.

Returns

kitaru.api_models.v1.cohort_version.CohortVersionResponse

Updated cohort version.

funcdelete(self, cohort_version_id) -> None

Delete a cohort version.

paramself
paramcohort_version_iduuid.UUID

Id of the cohort version.

Returns

None

On this page