/** *
Gives a detailed description of the result of an action on each entry in the request.
*/ export interface _BatchResultErrorEntry { /** *The Id of an entry in a batch request.
Specifies whether the error happened due to the producer.
*/ SenderFault: boolean; /** *An error code representing why the action failed on this entry.
*/ Code: string; /** *A message explaining why the action failed on this entry.
*/ Message?: string; } export declare type _UnmarshalledBatchResultErrorEntry = _BatchResultErrorEntry;