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