/** * Describes an account-specific API endpoint. */ export interface _Endpoint { /** * URL of endpoint */ Url?: string; } export declare type _UnmarshalledEndpoint = _Endpoint;