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

net.accelbyte.sdk.api.basic.operations.misc.UpdateCountryGroup Maven / Gradle / Ivy

There is a newer version: 0.67.0
Show newest version
/*
 * Copyright (c) 2022 AccelByte Inc. All Rights Reserved
 * This is licensed software from AccelByte Inc, for limitations
 * and restrictions contact your company contract manager.
 *
 * Code generated. DO NOT EDIT.
 */

package net.accelbyte.sdk.api.basic.operations.misc;

import java.io.*;
import java.util.*;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import net.accelbyte.sdk.api.basic.models.*;
import net.accelbyte.sdk.core.HttpResponseException;
import net.accelbyte.sdk.core.Operation;
import net.accelbyte.sdk.core.util.Helper;

/**
 * updateCountryGroup
 *
 * 

Update a country groups. The countryGroupCode must be exist beforehand. Valid update behaviour * : - To update countryGroupName only, do not include countries key or just specify it with empty * array. - To update countries only, do not include countryGroupName key or just specify it with * blank value. Other detail info: * *

* Required permission : resource = "ADMIN:NAMESPACE:{namespace}:MISC" , action=4 (UPDATE) * * Action code : 11202 * Returns : updated country group */ @Getter @Setter public class UpdateCountryGroup extends Operation { /** generated field's value */ private String path = "/basic/v1/admin/namespaces/{namespace}/misc/countrygroups/{countryGroupCode}"; private String method = "PUT"; private List consumes = Arrays.asList("application/json"); private List produces = Arrays.asList("application/json"); private String locationQuery = null; /** fields as input parameter */ private String countryGroupCode; private String namespace; private UpdateCountryGroupRequest body; /** * @param countryGroupCode required * @param namespace required */ @Builder // @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead. @Deprecated public UpdateCountryGroup( String countryGroupCode, String namespace, UpdateCountryGroupRequest body) { this.countryGroupCode = countryGroupCode; this.namespace = namespace; this.body = body; securities.add("Bearer"); } @Override public Map getPathParams() { Map pathParams = new HashMap<>(); if (this.countryGroupCode != null) { pathParams.put("countryGroupCode", this.countryGroupCode); } if (this.namespace != null) { pathParams.put("namespace", this.namespace); } return pathParams; } @Override public UpdateCountryGroupRequest getBodyParams() { return this.body; } @Override public boolean isValid() { if (this.countryGroupCode == null) { return false; } if (this.namespace == null) { return false; } return true; } public CountryGroupObject parseResponse(int code, String contentType, InputStream payload) throws HttpResponseException, IOException { if (code != 200) { final String json = Helper.convertInputStreamToString(payload); throw new HttpResponseException(code, json); } final String json = Helper.convertInputStreamToString(payload); return new CountryGroupObject().createFromJson(json); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy