/** *
Represents an API mapping.
*/ export interface _ApiMapping { /** *The API identifier.
*/ ApiId: string; /** *The API mapping identifier.
*/ ApiMappingId?: string; /** *The API mapping key.
*/ ApiMappingKey?: string; /** *The API stage.
*/ Stage: string; } export declare type _UnmarshalledApiMapping = _ApiMapping;