001package com.plivo.api.models.brand; 002import com.fasterxml.jackson.annotation.JsonInclude; 003 004import com.plivo.api.models.base.BaseResource; 005import java.util.List; 006 007@JsonInclude(JsonInclude.Include.NON_NULL) 008public class BrandResponse extends BaseResource { 009 010 private String brandID; 011 private String brandType; 012 private String einIssuingCountry; 013 private String entityType; 014 private String profileUUID; 015 private String registrationStatus; 016 private String vertical; 017 private Address address; 018 private String createdAt; 019 private AuthorizedContact authorizedContact; 020 021 /** 022 * @return String return the getBrandID 023 */ 024 public String getBrandID() { 025 return brandID; 026 } 027 028 /** 029 * @return String return the getBrandType 030 */ 031 public String getBrandType() { 032 return brandType; 033 } 034 035 /** 036 * @return String return the geteinIssuingCountry 037 */ 038 public String geteinIssuingCountry() { 039 return einIssuingCountry; 040 } 041 042 043 /** 044 * @return String return the getEntityType 045 */ 046 public String getEntityType() { 047 return entityType; 048 } 049 050 051 /** 052 * @return String return the getProfileUUID 053 */ 054 public String getProfileUUID() { 055 return profileUUID; 056 } 057 058 /** 059 * @return String return the getRegistrationStatus 060 */ 061 public String getRegistrationStatus() { 062 return registrationStatus; 063 } 064 065 066 /** 067 * @return String return the getVertical 068 */ 069 public String getVertical() { 070 return vertical; 071 } 072 073 /** 074 * @return String return the getAddress 075 */ 076 public Address getAddress() { 077 return address; 078 } 079 080 /** 081 * @return String return the getCreatedAt 082 */ 083 public String getCreatedAt() { 084 return createdAt; 085 } 086 087 /** 088 * @return String return the getAuthorizedContact 089 */ 090 public AuthorizedContact getAuthorizedContact() { 091 return authorizedContact; 092 } 093 094 @Override 095 public String getId() { 096 return this.brandID; 097 } 098 099}