com.alipay.v3.util.schema.sdk.ServiceUrl Maven / Gradle / Ivy
/**
* 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;
}
}