@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
9 lines (7 loc) • 486 B
text/typescript
import { BaseResponse } from './base-response';
export class CancelNotificationResponse extends BaseResponse {
/** @description User facing text describing the cancellation process. May be left blank to present a default value */
message?: string;
/** @description A list of errors preventing this notification from being cancelled. If no errors are returned the void is considered successful. If any errors are returned the void is considered failed. */
errors?: string[];
}