import { RpcMethod } from './commonTypes'; export type ApplicationSoundsService_Get = RpcMethod; export interface ApplicationSoundsService { /** Lists the custom notification sound file names uploaded for an application (format XXXXX-XXXXX) on a given platform. Use to populate the sound picker when composing a push for that platform. */ Get: ApplicationSoundsService_Get; } export type GetRequest = { /** Application code (format XXXXX-XXXXX) whose sounds to list. */ application?: string; /** Platform id to filter sounds by (e.g. 1 iOS, 3 Android). */ platform?: number; }; export type GetResponse = { sounds: string[]; };