export interface NoteAttribute {
    /**
     * The name of the note attribute.
     */
    name: string;

    /**
     * The value of the note attribute.
     */
    value: string | number;
}
