/** *
Describes the destination of a record.
*/ export interface _DestinationInfo { /** *The ID of the resource created at the destination.
*/ id?: string; /** *The destination service of the record.
*/ service?: string; } export declare type _UnmarshalledDestinationInfo = _DestinationInfo;