/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*//**
* Represents a view of an attachment.
*/
export interfaceAttachmentView {
/**
* The ID of the view.
*/
viewId: string;
/**
* The size of the view.
*/
size: number;
}