export interface OperationMessage {
  /** The human-readable message that describes the result. */
  message: string;
  /** The status code of the response. */
  statusCode: number;
}
