import { RpcMethod } from './commonTypes'; import { RestrictionValue as pushwoosh_objects_restrictionValues_v1_RestrictionValue } from './pushwoosh_objects_restrictionValues_v1'; export type RestrictionsService_GetRestrictionValues = RpcMethod; export interface RestrictionsService { /** Returns the current authenticated account's plan restriction values (feature limits and quotas such as allowed applications, subscribers or messages). Use to check what caps apply to the account before offering or gating a feature. */ GetRestrictionValues: RestrictionsService_GetRestrictionValues; } export type GetRestrictionValuesRequest = {}; export type GetRestrictionValuesResponse = { restrictionValues: pushwoosh_objects_restrictionValues_v1_RestrictionValue; };