import { CheckMacEncoder } from '../security/CheckMacEncoder'; export interface ILogisticsCommand { /** * Get the payload for the API request. */ getPayload(): Record; /** * Get the payload signed with CheckMacValue. */ getContent(): Record; /** * Get the API endpoint path. */ getRequestPath(): string; /** * Get the configured encoder. */ getEncoder(): CheckMacEncoder; }