export interface MembershipRedeemableTokenData { id: string; redeemableFor: ReedemableFor; status: string; redeemability: string; } interface ReedemableFor { accessDuration?: string; licenceId: string; type: string; optionalLicenceId?: string; } export interface RedeemableTokenResponsePost { id: string; creationDateTime: string; redeemableFor: ReedemableForPost; status: string; validUntil: string | null; redeemability: string; } interface ReedemableForPost { accessDuration?: string | null; accessLicenceId: string; type: string; } export {};