magicbell
Version:
MagicBell API wrapper
18 lines (17 loc) • 669 B
TypeScript
import { type FromSchema } from 'json-schema-to-ts';
import { Resource } from '../../client/resource.js';
import { type RequestOptions } from '../../client/types.js';
import * as schemas from '../../schemas/metrics/topics.js';
type GetMetricsTopicsResponse = FromSchema<typeof schemas.GetMetricsTopicsResponseSchema>;
export declare class MetricsTopics extends Resource {
path: string;
entity: string;
/**
* Query the metrics of broadcasts and their recipients, grouped by topic.
*
* @param options - override client request options.
* @returns
**/
get(options?: RequestOptions): Promise<GetMetricsTopicsResponse>;
}
export {};