import type * as Merge from "../../../index"; /** * # The RemoteResponse Object * ### Description * The `RemoteResponse` object is used to represent information returned from a third-party endpoint. * * ### Usage Example * View the `RemoteResponse` returned from your `DataPassthrough`. */ export interface RemoteResponse { method: string; path: string; status: number; response?: unknown; responseHeaders?: Record; responseType?: Merge.ticketing.RemoteResponseResponseType; headers?: Record; }