package xyz.stream.api.entity;

import com.google.gson.annotations.SerializedName;
import java.util.List;

/* JADX INFO: loaded from: classes3.dex */
public class RenewalEntity {

    @SerializedName("account")
    private String account;

    @SerializedName("serviceList")
    private List<ServiceListEntity> serviceList;

    @SerializedName("tip")
    private String tip;

    public static class ServiceListEntity {

        @SerializedName("displayName")
        private String displayName;

        @SerializedName("endTime")
        private String endTime;

        @SerializedName("expiryTime")
        private String expiryTime;

        @SerializedName("priceList")
        private List<PriceListEntity> priceList;

        @SerializedName("serviceName")
        private String serviceName;

        @SerializedName("valid")
        private int valid;

        public static class PriceListEntity {

            @SerializedName("currencySymbol")
            private String currencySymbol;

            @SerializedName("imgUrl")
            private String imgUrl;

            @SerializedName("key")
            private String key;

            @SerializedName("name")
            private String name;

            @SerializedName("price")
            private String price;

            @SerializedName("servicePeriod")
            private int servicePeriod;

            public String getCurrencySymbol() {
                return this.currencySymbol;
            }

            public String getImgUrl() {
                return this.imgUrl;
            }

            public String getKey() {
                return this.key;
            }

            public String getName() {
                return this.name;
            }

            public String getPrice() {
                return this.price;
            }

            public int getServicePeriod() {
                return this.servicePeriod;
            }

            public void setCurrencySymbol(String str) {
                this.currencySymbol = str;
            }

            public void setImgUrl(String str) {
                this.imgUrl = str;
            }

            public void setKey(String str) {
                this.key = str;
            }

            public void setName(String str) {
                this.name = str;
            }

            public void setPrice(String str) {
                this.price = str;
            }

            public void setServicePeriod(int i10) {
                this.servicePeriod = i10;
            }
        }

        public String getDisplayName() {
            return this.displayName;
        }

        public String getEndTime() {
            return this.endTime;
        }

        public String getExpiryTime() {
            return this.expiryTime;
        }

        public List<PriceListEntity> getPriceList() {
            return this.priceList;
        }

        public String getServiceName() {
            return this.serviceName;
        }

        public int getValid() {
            return this.valid;
        }

        public void setDisplayName(String str) {
            this.displayName = str;
        }

        public void setEndTime(String str) {
            this.endTime = str;
        }

        public void setExpiryTime(String str) {
            this.expiryTime = str;
        }

        public void setPriceList(List<PriceListEntity> list) {
            this.priceList = list;
        }

        public void setServiceName(String str) {
            this.serviceName = str;
        }

        public void setValid(int i10) {
            this.valid = i10;
        }
    }

    public String getAccount() {
        return this.account;
    }

    public List<ServiceListEntity> getServiceList() {
        return this.serviceList;
    }

    public String getTip() {
        return this.tip;
    }

    public void setAccount(String str) {
        this.account = str;
    }

    public void setServiceList(List<ServiceListEntity> list) {
        this.serviceList = list;
    }

    public void setTip(String str) {
        this.tip = str;
    }
}
