All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.v3.util.schema.sdk.ServiceUrl Maven / Gradle / Ivy

There is a newer version: 3.1.6.ALL
Show newest version
/**
 * Alipay.com Inc.
 * Copyright (c) 2004-2021 All Rights Reserved.
 */
package com.alipay.v3.util.schema.sdk;

/**
 * @author junying
 * @version : ServiceUrl.java, v 0.1 2021年03月24日 4:50 下午 junying Exp $
 */
public class ServiceUrl {
    private String carrierType;
    private String carrierUrl;

    /**
     * Getter method for property carrierType.
     *
     * @return property value of carrierType
     */
    public String getCarrierType() {
        return carrierType;
    }

    /**
     * Setter method for property carrierType.
     *
     * @param carrierType value to be assigned to property carrierType
     */
    public void setCarrierType(String carrierType) {
        this.carrierType = carrierType;
    }

    /**
     * Getter method for property carrierUrl.
     *
     * @return property value of carrierUrl
     */
    public String getCarrierUrl() {
        return carrierUrl;
    }

    /**
     * Setter method for property carrierUrl.
     *
     * @param carrierUrl value to be assigned to property carrierUrl
     */
    public void setCarrierUrl(String carrierUrl) {
        this.carrierUrl = carrierUrl;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy