@selldone/sdk-storefront
Version:
A TypeScript SDK to connect to your shop and build a fully functional storefront and website by simply developing a frontend web application. All backend operations are seamlessly managed by the serverless Selldone solution.
21 lines (20 loc) • 659 B
TypeScript
export interface CommunityAttachment {
/** Unique identifier for the community post file. */
id: number;
/** Identifier for the community this post file belongs to. */
community_id: number;
/** Identifier for the post this file is associated with. */
post_id: number;
/** Identifier for the user who uploaded the file. */
user_id: number;
/** Size of the file in bytes. */
size: string;
/** Name of the file. */
name: string;
/** Path of the file on storage. */
path: number;
/** Flag indicating whether the file is a virus. */
virus: boolean;
}
export declare namespace CommunityAttachment {
}