com.github.twitch4j.graphql.internal.CreateClipMutation Maven / Gradle / Ivy
// AUTO-GENERATED FILE. DO NOT MODIFY.
//
// This class was automatically generated by Apollo GraphQL plugin from the GraphQL queries it found.
// It should not be modified by hand.
//
package com.github.twitch4j.graphql.internal;
import com.apollographql.apollo.api.Mutation;
import com.apollographql.apollo.api.Operation;
import com.apollographql.apollo.api.OperationName;
import com.apollographql.apollo.api.Response;
import com.apollographql.apollo.api.ResponseField;
import com.apollographql.apollo.api.ScalarTypeAdapters;
import com.apollographql.apollo.api.internal.InputFieldMarshaller;
import com.apollographql.apollo.api.internal.InputFieldWriter;
import com.apollographql.apollo.api.internal.OperationRequestBodyComposer;
import com.apollographql.apollo.api.internal.QueryDocumentMinifier;
import com.apollographql.apollo.api.internal.ResponseFieldMapper;
import com.apollographql.apollo.api.internal.ResponseFieldMarshaller;
import com.apollographql.apollo.api.internal.ResponseReader;
import com.apollographql.apollo.api.internal.ResponseWriter;
import com.apollographql.apollo.api.internal.SimpleOperationResponseParser;
import com.apollographql.apollo.api.internal.UnmodifiableMapBuilder;
import com.apollographql.apollo.api.internal.Utils;
import com.github.twitch4j.graphql.internal.type.CreateClipErrorCode;
import com.github.twitch4j.graphql.internal.type.CreateClipInput;
import com.github.twitch4j.graphql.internal.type.CustomType;
import java.io.IOException;
import java.lang.Object;
import java.lang.Override;
import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.Map;
import okio.Buffer;
import okio.BufferedSource;
import okio.ByteString;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public final class CreateClipMutation implements Mutation {
public static final String OPERATION_ID = "6d78c354589ce8f82a868ee8e201de0818203ee8bb10809760e16c9ae00d2880";
public static final String QUERY_DOCUMENT = QueryDocumentMinifier.minify(
"mutation createClip($input: CreateClipInput!) {\n"
+ " createClip(input: $input) {\n"
+ " __typename\n"
+ " clip {\n"
+ " __typename\n"
+ " id\n"
+ " url\n"
+ " }\n"
+ " error {\n"
+ " __typename\n"
+ " code\n"
+ " }\n"
+ " }\n"
+ "}"
);
public static final OperationName OPERATION_NAME = new OperationName() {
@Override
public String name() {
return "createClip";
}
};
private final CreateClipMutation.Variables variables;
public CreateClipMutation(@NotNull CreateClipInput input) {
Utils.checkNotNull(input, "input == null");
variables = new CreateClipMutation.Variables(input);
}
@Override
public String operationId() {
return OPERATION_ID;
}
@Override
public String queryDocument() {
return QUERY_DOCUMENT;
}
@Override
public CreateClipMutation.Data wrapData(CreateClipMutation.Data data) {
return data;
}
@Override
public CreateClipMutation.Variables variables() {
return variables;
}
@Override
public ResponseFieldMapper responseFieldMapper() {
return new Data.Mapper();
}
public static Builder builder() {
return new Builder();
}
@Override
public OperationName name() {
return OPERATION_NAME;
}
@Override
@NotNull
public Response parse(@NotNull final BufferedSource source,
@NotNull final ScalarTypeAdapters scalarTypeAdapters) throws IOException {
return SimpleOperationResponseParser.parse(source, this, scalarTypeAdapters);
}
@Override
@NotNull
public Response parse(@NotNull final ByteString byteString,
@NotNull final ScalarTypeAdapters scalarTypeAdapters) throws IOException {
return parse(new Buffer().write(byteString), scalarTypeAdapters);
}
@Override
@NotNull
public Response parse(@NotNull final BufferedSource source) throws
IOException {
return parse(source, ScalarTypeAdapters.DEFAULT);
}
@Override
@NotNull
public Response parse(@NotNull final ByteString byteString) throws
IOException {
return parse(byteString, ScalarTypeAdapters.DEFAULT);
}
@Override
@NotNull
public ByteString composeRequestBody(@NotNull final ScalarTypeAdapters scalarTypeAdapters) {
return OperationRequestBodyComposer.compose(this, false, true, scalarTypeAdapters);
}
@NotNull
@Override
public ByteString composeRequestBody() {
return OperationRequestBodyComposer.compose(this, false, true, ScalarTypeAdapters.DEFAULT);
}
@Override
@NotNull
public ByteString composeRequestBody(final boolean autoPersistQueries,
final boolean withQueryDocument, @NotNull final ScalarTypeAdapters scalarTypeAdapters) {
return OperationRequestBodyComposer.compose(this, autoPersistQueries, withQueryDocument, scalarTypeAdapters);
}
public static final class Builder {
private @NotNull CreateClipInput input;
Builder() {
}
public Builder input(@NotNull CreateClipInput input) {
this.input = input;
return this;
}
public CreateClipMutation build() {
Utils.checkNotNull(input, "input == null");
return new CreateClipMutation(input);
}
}
public static final class Variables extends Operation.Variables {
private final @NotNull CreateClipInput input;
private final transient Map valueMap = new LinkedHashMap<>();
Variables(@NotNull CreateClipInput input) {
this.input = input;
this.valueMap.put("input", input);
}
public @NotNull CreateClipInput input() {
return input;
}
@Override
public Map valueMap() {
return Collections.unmodifiableMap(valueMap);
}
@Override
public InputFieldMarshaller marshaller() {
return new InputFieldMarshaller() {
@Override
public void marshal(InputFieldWriter writer) throws IOException {
writer.writeObject("input", input.marshaller());
}
};
}
}
/**
* Data from the response after executing this GraphQL operation
*/
public static class Data implements Operation.Data {
static final ResponseField[] $responseFields = {
ResponseField.forObject("createClip", "createClip", new UnmodifiableMapBuilder(1)
.put("input", new UnmodifiableMapBuilder(2)
.put("kind", "Variable")
.put("variableName", "input")
.build())
.build(), true, Collections.emptyList())
};
final @Nullable CreateClip createClip;
private transient volatile String $toString;
private transient volatile int $hashCode;
private transient volatile boolean $hashCodeMemoized;
public Data(@Nullable CreateClip createClip) {
this.createClip = createClip;
}
/**
* createClip creates a new clip with the authenticated user as the curator.
*/
public @Nullable CreateClip createClip() {
return this.createClip;
}
@SuppressWarnings({"rawtypes", "unchecked"})
public ResponseFieldMarshaller marshaller() {
return new ResponseFieldMarshaller() {
@Override
public void marshal(ResponseWriter writer) {
writer.writeObject($responseFields[0], createClip != null ? createClip.marshaller() : null);
}
};
}
@Override
public String toString() {
if ($toString == null) {
$toString = "Data{"
+ "createClip=" + createClip
+ "}";
}
return $toString;
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof Data) {
Data that = (Data) o;
return ((this.createClip == null) ? (that.createClip == null) : this.createClip.equals(that.createClip));
}
return false;
}
@Override
public int hashCode() {
if (!$hashCodeMemoized) {
int h = 1;
h *= 1000003;
h ^= (createClip == null) ? 0 : createClip.hashCode();
$hashCode = h;
$hashCodeMemoized = true;
}
return $hashCode;
}
public static final class Mapper implements ResponseFieldMapper {
final CreateClip.Mapper createClipFieldMapper = new CreateClip.Mapper();
@Override
public Data map(ResponseReader reader) {
final CreateClip createClip = reader.readObject($responseFields[0], new ResponseReader.ObjectReader() {
@Override
public CreateClip read(ResponseReader reader) {
return createClipFieldMapper.map(reader);
}
});
return new Data(createClip);
}
}
}
/**
* CreateClipPayload returns the created clip or any error that prevented the clip creation.
*/
public static class CreateClip {
static final ResponseField[] $responseFields = {
ResponseField.forString("__typename", "__typename", null, false, Collections.emptyList()),
ResponseField.forObject("clip", "clip", null, true, Collections.emptyList()),
ResponseField.forObject("error", "error", null, true, Collections.emptyList())
};
final @NotNull String __typename;
final @Nullable Clip clip;
final @Nullable Error error;
private transient volatile String $toString;
private transient volatile int $hashCode;
private transient volatile boolean $hashCodeMemoized;
public CreateClip(@NotNull String __typename, @Nullable Clip clip, @Nullable Error error) {
this.__typename = Utils.checkNotNull(__typename, "__typename == null");
this.clip = clip;
this.error = error;
}
public @NotNull String __typename() {
return this.__typename;
}
/**
* The created clip has all fields execpt for durationSeconds and viewCount.
*/
public @Nullable Clip clip() {
return this.clip;
}
/**
* The error when a clip fails to create.
*/
public @Nullable Error error() {
return this.error;
}
@SuppressWarnings({"rawtypes", "unchecked"})
public ResponseFieldMarshaller marshaller() {
return new ResponseFieldMarshaller() {
@Override
public void marshal(ResponseWriter writer) {
writer.writeString($responseFields[0], __typename);
writer.writeObject($responseFields[1], clip != null ? clip.marshaller() : null);
writer.writeObject($responseFields[2], error != null ? error.marshaller() : null);
}
};
}
@Override
public String toString() {
if ($toString == null) {
$toString = "CreateClip{"
+ "__typename=" + __typename + ", "
+ "clip=" + clip + ", "
+ "error=" + error
+ "}";
}
return $toString;
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof CreateClip) {
CreateClip that = (CreateClip) o;
return this.__typename.equals(that.__typename)
&& ((this.clip == null) ? (that.clip == null) : this.clip.equals(that.clip))
&& ((this.error == null) ? (that.error == null) : this.error.equals(that.error));
}
return false;
}
@Override
public int hashCode() {
if (!$hashCodeMemoized) {
int h = 1;
h *= 1000003;
h ^= __typename.hashCode();
h *= 1000003;
h ^= (clip == null) ? 0 : clip.hashCode();
h *= 1000003;
h ^= (error == null) ? 0 : error.hashCode();
$hashCode = h;
$hashCodeMemoized = true;
}
return $hashCode;
}
public static final class Mapper implements ResponseFieldMapper {
final Clip.Mapper clipFieldMapper = new Clip.Mapper();
final Error.Mapper errorFieldMapper = new Error.Mapper();
@Override
public CreateClip map(ResponseReader reader) {
final String __typename = reader.readString($responseFields[0]);
final Clip clip = reader.readObject($responseFields[1], new ResponseReader.ObjectReader() {
@Override
public Clip read(ResponseReader reader) {
return clipFieldMapper.map(reader);
}
});
final Error error = reader.readObject($responseFields[2], new ResponseReader.ObjectReader() {
@Override
public Error read(ResponseReader reader) {
return errorFieldMapper.map(reader);
}
});
return new CreateClip(__typename, clip, error);
}
}
}
/**
* A recorded, replayable part of a live broadcast.
*/
public static class Clip {
static final ResponseField[] $responseFields = {
ResponseField.forString("__typename", "__typename", null, false, Collections.emptyList()),
ResponseField.forCustomType("id", "id", null, false, CustomType.ID, Collections.emptyList()),
ResponseField.forString("url", "url", null, false, Collections.emptyList())
};
final @NotNull String __typename;
final @NotNull String id;
final @NotNull String url;
private transient volatile String $toString;
private transient volatile int $hashCode;
private transient volatile boolean $hashCodeMemoized;
public Clip(@NotNull String __typename, @NotNull String id, @NotNull String url) {
this.__typename = Utils.checkNotNull(__typename, "__typename == null");
this.id = Utils.checkNotNull(id, "id == null");
this.url = Utils.checkNotNull(url, "url == null");
}
public @NotNull String __typename() {
return this.__typename;
}
/**
* The clip's unique identifier.
*/
public @NotNull String id() {
return this.id;
}
/**
* A URL to the clip's page.
*/
public @NotNull String url() {
return this.url;
}
@SuppressWarnings({"rawtypes", "unchecked"})
public ResponseFieldMarshaller marshaller() {
return new ResponseFieldMarshaller() {
@Override
public void marshal(ResponseWriter writer) {
writer.writeString($responseFields[0], __typename);
writer.writeCustom((ResponseField.CustomTypeField) $responseFields[1], id);
writer.writeString($responseFields[2], url);
}
};
}
@Override
public String toString() {
if ($toString == null) {
$toString = "Clip{"
+ "__typename=" + __typename + ", "
+ "id=" + id + ", "
+ "url=" + url
+ "}";
}
return $toString;
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof Clip) {
Clip that = (Clip) o;
return this.__typename.equals(that.__typename)
&& this.id.equals(that.id)
&& this.url.equals(that.url);
}
return false;
}
@Override
public int hashCode() {
if (!$hashCodeMemoized) {
int h = 1;
h *= 1000003;
h ^= __typename.hashCode();
h *= 1000003;
h ^= id.hashCode();
h *= 1000003;
h ^= url.hashCode();
$hashCode = h;
$hashCodeMemoized = true;
}
return $hashCode;
}
public static final class Mapper implements ResponseFieldMapper {
@Override
public Clip map(ResponseReader reader) {
final String __typename = reader.readString($responseFields[0]);
final String id = reader.readCustomType((ResponseField.CustomTypeField) $responseFields[1]);
final String url = reader.readString($responseFields[2]);
return new Clip(__typename, id, url);
}
}
}
/**
* CreateClipError is an error associated with the createClip mutation.
*/
public static class Error {
static final ResponseField[] $responseFields = {
ResponseField.forString("__typename", "__typename", null, false, Collections.emptyList()),
ResponseField.forString("code", "code", null, true, Collections.emptyList())
};
final @NotNull String __typename;
final @Nullable CreateClipErrorCode code;
private transient volatile String $toString;
private transient volatile int $hashCode;
private transient volatile boolean $hashCodeMemoized;
public Error(@NotNull String __typename, @Nullable CreateClipErrorCode code) {
this.__typename = Utils.checkNotNull(__typename, "__typename == null");
this.code = code;
}
public @NotNull String __typename() {
return this.__typename;
}
/**
* The associated error code.
*/
public @Nullable CreateClipErrorCode code() {
return this.code;
}
@SuppressWarnings({"rawtypes", "unchecked"})
public ResponseFieldMarshaller marshaller() {
return new ResponseFieldMarshaller() {
@Override
public void marshal(ResponseWriter writer) {
writer.writeString($responseFields[0], __typename);
writer.writeString($responseFields[1], code != null ? code.rawValue() : null);
}
};
}
@Override
public String toString() {
if ($toString == null) {
$toString = "Error{"
+ "__typename=" + __typename + ", "
+ "code=" + code
+ "}";
}
return $toString;
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof Error) {
Error that = (Error) o;
return this.__typename.equals(that.__typename)
&& ((this.code == null) ? (that.code == null) : this.code.equals(that.code));
}
return false;
}
@Override
public int hashCode() {
if (!$hashCodeMemoized) {
int h = 1;
h *= 1000003;
h ^= __typename.hashCode();
h *= 1000003;
h ^= (code == null) ? 0 : code.hashCode();
$hashCode = h;
$hashCodeMemoized = true;
}
return $hashCode;
}
public static final class Mapper implements ResponseFieldMapper {
@Override
public Error map(ResponseReader reader) {
final String __typename = reader.readString($responseFields[0]);
final String codeStr = reader.readString($responseFields[1]);
final CreateClipErrorCode code;
if (codeStr != null) {
code = CreateClipErrorCode.safeValueOf(codeStr);
} else {
code = null;
}
return new Error(__typename, code);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy