Inceptum/launcher/src/main/java/io/gitlab/jfronny/inceptum/launcher/model/microsoft/request/XstsTokenRequest.java

17 lines
762 B
Java

package io.gitlab.jfronny.inceptum.launcher.model.microsoft.request;
import io.gitlab.jfronny.gson.annotations.SerializedName;
import io.gitlab.jfronny.gson.compile.annotations.GSerializable;
import io.gitlab.jfronny.inceptum.common.GsonPreset;
import java.util.List;
@GSerializable(configure = GsonPreset.Api.class)
public record XstsTokenRequest(@SerializedName("Properties") Properties properties,
@SerializedName("RelyingParty") String relyingParty,
@SerializedName("TokenType") String tokenType) {
@GSerializable(configure = GsonPreset.Api.class)
public record Properties(@SerializedName("SandboxId") String sandboxId, @SerializedName("UserTokens") List<String> userTokens) {
}
}