import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface UsagePlanKeyProperties { KeyType: Value; UsagePlanId: Value; KeyId: Value; } export default class UsagePlanKey extends ResourceBase { constructor(properties: UsagePlanKeyProperties); }