improve definitions for attachments (#20392)

This commit is contained in:
Alexander Leon
2017-10-12 20:33:47 -05:00
committed by Wesley Wigham
parent ff0a65d058
commit 48e3f82b80

View File

@@ -787,12 +787,13 @@ declare namespace asana {
namespace Attachments {
interface Type extends Resource {
created_at: string;
permanent_url: string;
download_url: string;
view_url: string;
host: string;
parent: Resource;
readonly id: number;
readonly created_at: string;
readonly download_url: string;
readonly view_url: string;
readonly name: string;
readonly host: string;
readonly parent: Resource;
}
}