001package com.box.sdk; 002 003/** 004 * Upload avatar response 005 */ 006public class AvatarUploadResponse { 007 private final String small; 008 private final String large; 009 private final String preview; 010 011 AvatarUploadResponse(String small, String large, String preview) { 012 this.small = small; 013 this.large = large; 014 this.preview = preview; 015 } 016 017 /** 018 * URL with the small representation of Avatar. 019 * 020 * @return URL with the small representation of Avatar 021 */ 022 public String getSmall() { 023 return small; 024 } 025 026 /** 027 * URL with the large representation of Avatar. 028 * 029 * @return URL with the large representation of Avatar 030 */ 031 public String getLarge() { 032 return large; 033 } 034 035 /** 036 * URL with the preview representation of Avatar. 037 * 038 * @return URL with the preview representation of Avatar 039 */ 040 public String getPreview() { 041 return preview; 042 } 043}