/** * User Service API * Solomon AI User Service API - Manages user profiles and authentication * * The version of the OpenAPI document: 1.0 * Contact: yoanyomba@solomon-ai.co * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { WorkspaceActivity } from './workspaceActivity'; /** * ListWorkspaceActivityResponse contains the paginated list of workspace activities and associated statistics. The response includes: - List of activity records - Pagination info for fetching next page - Activity statistics broken down by type and user Example: ```protobuf message response { activities: [ {activity_1_details}, {activity_2_details} ] next_page_number: 2 activity_type_counts: { \"file_upload\": 10, \"comment_added\": 5 } user_activity_counts: { \"user123\": 8, \"user456\": 7 } } ``` */ export declare class ListWorkspaceActivityResponse { 'activities'?: Array; 'nextPageNumber'?: string; 'activityTypeCounts'?: { [key: string]: number | undefined; }; 'userActivityCounts'?: { [key: string]: number | undefined; }; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }