@akamai/openapi-ts
    Preparing search index...

    Variable postSharegroupTokensResponseSchemaConst

    postSharegroupTokensResponseSchema: ZodObject<
        {
            created: ZodReadonly<ZodISODateTime>;
            expiry: ZodReadonly<
                ZodUnion<readonly [ZodReadonly<ZodISODateTime>, ZodNull]>,
            >;
            label: ZodUnion<readonly [ZodString, ZodNull]>;
            sharegroup_label: ZodReadonly<ZodString>;
            sharegroup_uuid: ZodReadonly<ZodString>;
            status: ZodEnum<
                {
                    active: "active";
                    expired: "expired";
                    pending: "pending";
                    revoked: "revoked";
                },
            >;
            token: ZodReadonly<ZodString>;
            token_uuid: ZodReadonly<ZodString>;
            updated: ZodReadonly<
                ZodUnion<readonly [ZodReadonly<ZodISODateTime>, ZodNull]>,
            >;
            valid_for_sharegroup_uuid: ZodReadonly<ZodString>;
        },
        $strip,
    > = ...

    The share group membership token's details.