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

net.accelbyte.sdk.api.social.operations.slot.PublicUpdateUserNamespaceSlot 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.social.operations.slot;

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

/**
 * publicUpdateUserNamespaceSlot
 *
 * 

## The endpoint is going to be deprecated * *

Updates a slot. Other detail info: * Required permission : * resource="NAMESPACE:{namespace}:USER:{userId}:SLOTDATA", action=4 (UPDATE) * Returns : updated * slot * * @deprecated */ @Deprecated @Getter @Setter public class PublicUpdateUserNamespaceSlot extends Operation { /** generated field's value */ private String path = "/social/public/namespaces/{namespace}/users/{userId}/slots/{slotId}"; private String method = "PUT"; private List consumes = Arrays.asList("multipart/form-data"); private List produces = Arrays.asList("application/json"); private String locationQuery = null; /** fields as input parameter */ private String namespace; private String slotId; private String userId; private String label; private List tags; private String checksum; private String customAttribute; private File file; /** * @param namespace required * @param slotId required * @param userId required */ @Builder // @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead. @Deprecated public PublicUpdateUserNamespaceSlot( String namespace, String slotId, String userId, String label, List tags, String checksum, String customAttribute, File file) { this.namespace = namespace; this.slotId = slotId; this.userId = userId; this.label = label; this.tags = tags; this.checksum = checksum; this.customAttribute = customAttribute; this.file = file; securities.add("Bearer"); } @Override public Map getPathParams() { Map pathParams = new HashMap<>(); if (this.namespace != null) { pathParams.put("namespace", this.namespace); } if (this.slotId != null) { pathParams.put("slotId", this.slotId); } if (this.userId != null) { pathParams.put("userId", this.userId); } return pathParams; } @Override public Map> getQueryParams() { Map> queryParams = new HashMap<>(); queryParams.put("label", this.label == null ? null : Arrays.asList(this.label)); queryParams.put("tags", this.tags == null ? null : this.tags); return queryParams; } @Override public Map getFormParams() { Map formDataParams = new HashMap<>(); if (this.checksum != null) { formDataParams.put("checksum", this.checksum); } if (this.customAttribute != null) { formDataParams.put("customAttribute", this.customAttribute); } if (this.file != null) { formDataParams.put("file", this.file); } return formDataParams; } @Override public boolean isValid() { if (this.namespace == null) { return false; } if (this.slotId == null) { return false; } if (this.userId == null) { return false; } return true; } public SlotInfo 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 SlotInfo().createFromJson(json); } @Override protected Map getCollectionFormatMap() { Map result = new HashMap<>(); result.put("label", "None"); result.put("tags", "multi"); return result; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy