Note
import type { Note } from "https://googleapis.deno.dev/v1/authorizedbuyersmarketplace:v1.ts";
A text note attached to the proposal to facilitate the communication between buyers and sellers.
interface Note {
readonly createTime?: Date;
readonly creatorRole?: "BUYER_SELLER_ROLE_UNSPECIFIED" | "BUYER" | "SELLER";
note?: string;
}