
io.gs2.realtime.control.DeleteGatheringPoolRequest Maven / Gradle / Ivy
/*
* Copyright 2016 Game Server Services, Inc. or its affiliates. All Rights
* Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package io.gs2.realtime.control;
import org.json.JSONObject;
import java.util.List;
import io.gs2.realtime.Gs2Realtime;
import io.gs2.control.Gs2BasicRequest;
/**
* @author Game Server Services, Inc.
*/
@SuppressWarnings("serial")
public class DeleteGatheringPoolRequest extends Gs2BasicRequest {
public static class Constant extends Gs2Realtime.Constant {
public static final String FUNCTION = "DeleteGatheringPool";
}
/** ギャザリングプールの名前を指定します。 */
private String gatheringPoolName;
/**
* ギャザリングプールの名前を指定します。を取得
*
* @return ギャザリングプールの名前を指定します。
*/
public String getGatheringPoolName() {
return gatheringPoolName;
}
/**
* ギャザリングプールの名前を指定します。を設定
*
* @param gatheringPoolName ギャザリングプールの名前を指定します。
*/
public void setGatheringPoolName(String gatheringPoolName) {
this.gatheringPoolName = gatheringPoolName;
}
/**
* ギャザリングプールの名前を指定します。を設定
*
* @param gatheringPoolName ギャザリングプールの名前を指定します。
* @return this
*/
public DeleteGatheringPoolRequest withGatheringPoolName(String gatheringPoolName) {
setGatheringPoolName(gatheringPoolName);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy