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

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

The newest version!
/**
 * Alipay.com Inc.
 * Copyright (c) 2004-2021 All Rights Reserved.
 */
package com.alipay.v3.util.schema.sdk;

/**
 * @author junying
 * @version : ServiceSchema.java, v 0.1 2021年03月24日 4:48 下午 junying Exp $
 */
public class ServiceSchema {

    private String     serviceName;
    private String     serviceDesc;
    private ServiceUrl serviceUrl;
    private Poi        Poi;

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

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

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

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

    /**
     * Getter method for property serviceUrl.
     *
     * @return property value of serviceUrl
     */
    public ServiceUrl getServiceUrl() {
        return serviceUrl;
    }

    /**
     * Setter method for property serviceUrl.
     *
     * @param serviceUrl value to be assigned to property serviceUrl
     */
    public void setServiceUrl(ServiceUrl serviceUrl) {
        this.serviceUrl = serviceUrl;
    }

    /**
     * Getter method for property Poi.
     *
     * @return property value of Poi
     */
    public Poi getPoi() {
        return Poi;
    }

    /**
     * Setter method for property Poi.
     *
     * @param poi value to be assigned to property Poi
     */
    public void setPoi(Poi poi) {
        Poi = poi;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy