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

net.accelbyte.sdk.api.lobby.ws_models.PartyJoinResponse Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
/*
 * Copyright (c) 2024 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.lobby.ws_models;

import static net.accelbyte.sdk.core.util.Helper.generateUUID;
import static net.accelbyte.sdk.core.util.Helper.parseWSM;

import java.util.*;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class PartyJoinResponse {
  private Integer code;
  private String id;
  private String invitationToken;
  private String invitees;
  private String leaderId;
  private String members;
  private String partyId;

  private PartyJoinResponse() {}

  @Builder
  // @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
  @Deprecated
  public PartyJoinResponse(
      Integer code,
      String id,
      String invitationToken,
      String invitees,
      String leaderId,
      String members,
      String partyId) {
    this.code = code;
    this.id = id;
    this.invitationToken = invitationToken;
    this.invitees = invitees;
    this.leaderId = leaderId;
    this.members = members;
    this.partyId = partyId;
  }

  public static String getType() {
    return "partyJoinResponse";
  }

  public static PartyJoinResponse createFromWSM(String message) {
    PartyJoinResponse result = new PartyJoinResponse();
    Map response = parseWSM(message);
    result.code = response.get("code") != null ? Integer.valueOf(response.get("code")) : null;
    result.id = response.get("id") != null ? response.get("id") : null;
    result.invitationToken =
        response.get("invitationToken") != null ? response.get("invitationToken") : null;
    result.invitees = response.get("invitees") != null ? response.get("invitees") : null;
    result.leaderId = response.get("leaderId") != null ? response.get("leaderId") : null;
    result.members = response.get("members") != null ? response.get("members") : null;
    result.partyId = response.get("partyId") != null ? response.get("partyId") : null;
    return result;
  }

  public String toWSM() {
    StringBuilder stringBuilder = new StringBuilder();
    stringBuilder.append("type: ").append(PartyJoinResponse.getType());
    if (code != null) {
      stringBuilder.append("\n").append("code: ").append(code);
    }
    if (id != null) {
      stringBuilder.append("\n").append("id: ").append(id);
    } else {
      stringBuilder.append("\n").append("id: ").append(generateUUID());
    }
    if (invitationToken != null) {
      stringBuilder.append("\n").append("invitationToken: ").append(invitationToken);
    }
    if (invitees != null) {
      stringBuilder.append("\n").append("invitees: ").append(invitees);
    }
    if (leaderId != null) {
      stringBuilder.append("\n").append("leaderId: ").append(leaderId);
    }
    if (members != null) {
      stringBuilder.append("\n").append("members: ").append(members);
    }
    if (partyId != null) {
      stringBuilder.append("\n").append("partyId: ").append(partyId);
    }
    return stringBuilder.toString();
  }

  public static Map getFieldInfo() {
    Map result = new HashMap<>();
    result.put("code", "code");
    result.put("id", "id");
    result.put("invitationToken", "invitationToken");
    result.put("invitees", "invitees");
    result.put("leaderId", "leaderId");
    result.put("members", "members");
    result.put("partyId", "partyId");
    return result;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy