deactivateCollection()
Deactivate the specified collection
Parameters
export type ActivateCollectionProps = {
collectionId: string;
}
Examples
const success = await assetlayer.collections.deactivateCollection({
collectionId: 'collectionId'
});
Return Types
type ReturnType = boolean;
Last updated