001package com.plivo.api.models.brand;
002
003import java.util.ArrayList;
004import java.util.List;
005
006import com.fasterxml.jackson.annotation.JsonInclude;
007
008import com.plivo.api.models.base.BaseResource;
009
010
011@JsonInclude(JsonInclude.Include.NON_NULL)
012public class BrandUsecaseResponse extends BaseResource {
013
014    private List<UseCase> useCases = new ArrayList<UseCase>();
015    private String brandId;
016
017    /**
018     * @return String return the getBrandId
019     */
020    public String getBrandId() {
021        return brandId;
022    }
023
024    /**
025     * @return String return the getBrandType
026     */
027    public List<UseCase> getUseCases() {
028        return useCases;
029    }
030
031    @Override                                      
032    public String getId() {                        
033        return this.brandId;                    
034    }
035  
036}