001package com.plivo.api.models.brand; 002 003import com.plivo.api.models.base.BaseResource; 004 005public class BrandDeleteResponse extends BaseResource{ 006 private String brandId; 007 private String message; 008 009 public String getBrandId() { 010 return this.brandId; 011 } 012 013 public String getMessage(){ 014 return this.message; 015 } 016 017 @Override 018 public String getId(){ 019 return this.brandId; 020 } 021 022} 023 024 025 026 027 028 029