github.com/vchain-us/vcn@v0.9.11-0.20210921212052-a2484d23c0b3/pkg/api/attachment.go (about) 1 /* 2 * Copyright (c) 2018-2020 vChain, Inc. All Rights Reserved. 3 * This software is released under GPL3. 4 * The full license information can be found under: 5 * https://www.gnu.org/licenses/gpl-3.0.en.html 6 * 7 */ 8 9 package api 10 11 // Attachment holds Attachment attributes 12 type Attachment struct { 13 Filename string `json:"filename" yaml:"filename" vcn:"filename"` 14 Hash string `json:"hash" yaml:"hash" vcn:"hash"` 15 Mime string `json:"mime" yaml:"mime" vcn:"mime"` 16 Label string `json:"label" yaml:"label" vcn:"label"` 17 }