/** * This code was GENERATED using the solita package. * Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality. * * See: https://github.com/metaplex-foundation/solita */ import * as web3 from '@solana/web3.js'; import * as beet from '@metaplex-foundation/beet'; import * as beetSolana from '@metaplex-foundation/beet-solana'; export type GatingConfig = { collection: web3.PublicKey; expireOnUse: boolean; gatingTime: beet.COption; }; /** * @category userTypes * @category generated */ export const gatingConfigBeet = new beet.FixableBeetArgsStruct( [ ['collection', beetSolana.publicKey], ['expireOnUse', beet.bool], ['gatingTime', beet.coption(beet.u64)], ], 'GatingConfig', );