001package com.plivo.api.models.powerpack;
002
003import com.plivo.api.models.base.BaseResponse;
004public class PowerpackUpdateResponse extends BaseResponse {
005  private String createdOn;
006  private String name;
007  private String applicationType;
008  private String applicationID;
009  private Boolean stickySender;
010  private Boolean localConnect;
011  private String numberPool;
012  private String uuid;
013  public NumberPriority[] numberPriority;
014
015  public String getCreatedOn() {
016    return createdOn;
017  }
018
019  public String getName() {
020    return name;
021  }
022
023  public String getApplicationType() {
024    return applicationType;
025  }
026
027  public String getApplicationID() {
028    return applicationID;
029  }
030
031  public Boolean getStickySender() {
032    return stickySender;
033  }
034
035  public Boolean getLocalConnect() {
036    return localConnect;
037  }
038
039  public String getNumberPool() {
040    return numberPool;
041  }
042
043  public NumberPriority[] getNumberPriority() {
044    return numberPriority;
045  }
046
047  public String getUuid() {
048    return uuid;
049  }
050}