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