UNPKG

@memberjunction/actions-bizapps-social

Version:

Social Media Actions for MemberJunction - Twitter, LinkedIn, Facebook, Instagram, TikTok, YouTube, HootSuite, Buffer

33 lines 964 B
import { FacebookBaseAction } from '../facebook-base.action'; import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base'; /** * Creates a photo album on a Facebook page and optionally uploads photos to it. * Albums help organize related photos together. */ export declare class FacebookCreateAlbumAction extends FacebookBaseAction { /** * Get action description */ get Description(): string; /** * Define the parameters for this action */ get Params(): ActionParam[]; /** * Execute the action */ protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>; /** * Upload a photo to an album */ private uploadPhotoToAlbum; /** * Set the cover photo for an album */ private setAlbumCoverPhoto; /** * Get album details */ private getAlbumDetails; } //# sourceMappingURL=create-album.action.d.ts.map