/** * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ import { combineCodec, getEnumDecoder, getEnumEncoder, type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder, } from '@solana/kit'; export enum PayoutBeneficiary { Recipient, Payee, Payer, } export type PayoutBeneficiaryArgs = PayoutBeneficiary; export function getPayoutBeneficiaryEncoder(): FixedSizeEncoder { return getEnumEncoder(PayoutBeneficiary); } export function getPayoutBeneficiaryDecoder(): FixedSizeDecoder { return getEnumDecoder(PayoutBeneficiary); } export function getPayoutBeneficiaryCodec(): FixedSizeCodec { return combineCodec(getPayoutBeneficiaryEncoder(), getPayoutBeneficiaryDecoder()); }