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

com.adobe.cq.commerce.magento.graphql.MediaGalleryEntry Maven / Gradle / Ivy

There is a newer version: 11.1.0-magento244ee
Show newest version
/*******************************************************************************
 *
 *    Copyright 2019 Adobe. All rights reserved.
 *    This file is licensed to you under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License. You may obtain a copy
 *    of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software distributed under
 *    the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 *    OF ANY KIND, either express or implied. See the License for the specific language
 *    governing permissions and limitations under the License.
 *
 ******************************************************************************/

package com.adobe.cq.commerce.magento.graphql;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.shopify.graphql.support.AbstractResponse;
import com.shopify.graphql.support.SchemaViolationError;

/**
 * MediaGalleryEntry defines characteristics about images and videos associated with a specific product
 */
public class MediaGalleryEntry extends AbstractResponse {
    public MediaGalleryEntry() {
    }

    public MediaGalleryEntry(JsonObject fields) throws SchemaViolationError {
        for (Map.Entry field : fields.entrySet()) {
            String key = field.getKey();
            String fieldName = getFieldName(key);
            switch (fieldName) {
                case "content": {
                    ProductMediaGalleryEntriesContent optional1 = null;
                    if (!field.getValue().isJsonNull()) {
                        optional1 = new ProductMediaGalleryEntriesContent(jsonAsObject(field.getValue(), key));
                    }

                    responseData.put(key, optional1);

                    break;
                }

                case "disabled": {
                    Boolean optional1 = null;
                    if (!field.getValue().isJsonNull()) {
                        optional1 = jsonAsBoolean(field.getValue(), key);
                    }

                    responseData.put(key, optional1);

                    break;
                }

                case "file": {
                    String optional1 = null;
                    if (!field.getValue().isJsonNull()) {
                        optional1 = jsonAsString(field.getValue(), key);
                    }

                    responseData.put(key, optional1);

                    break;
                }

                case "id": {
                    Integer optional1 = null;
                    if (!field.getValue().isJsonNull()) {
                        optional1 = jsonAsInteger(field.getValue(), key);
                    }

                    responseData.put(key, optional1);

                    break;
                }

                case "label": {
                    String optional1 = null;
                    if (!field.getValue().isJsonNull()) {
                        optional1 = jsonAsString(field.getValue(), key);
                    }

                    responseData.put(key, optional1);

                    break;
                }

                case "media_type": {
                    String optional1 = null;
                    if (!field.getValue().isJsonNull()) {
                        optional1 = jsonAsString(field.getValue(), key);
                    }

                    responseData.put(key, optional1);

                    break;
                }

                case "position": {
                    Integer optional1 = null;
                    if (!field.getValue().isJsonNull()) {
                        optional1 = jsonAsInteger(field.getValue(), key);
                    }

                    responseData.put(key, optional1);

                    break;
                }

                case "types": {
                    List optional1 = null;
                    if (!field.getValue().isJsonNull()) {
                        List list1 = new ArrayList<>();
                        for (JsonElement element1 : jsonAsArray(field.getValue(), key)) {
                            String optional2 = null;
                            if (!element1.isJsonNull()) {
                                optional2 = jsonAsString(element1, key);
                            }

                            list1.add(optional2);
                        }

                        optional1 = list1;
                    }

                    responseData.put(key, optional1);

                    break;
                }

                case "video_content": {
                    ProductMediaGalleryEntriesVideoContent optional1 = null;
                    if (!field.getValue().isJsonNull()) {
                        optional1 = new ProductMediaGalleryEntriesVideoContent(jsonAsObject(field.getValue(), key));
                    }

                    responseData.put(key, optional1);

                    break;
                }

                case "__typename": {
                    responseData.put(key, jsonAsString(field.getValue(), key));
                    break;
                }
                default: {
                    throw new SchemaViolationError(this, key, field.getValue());
                }
            }
        }
    }

    public String getGraphQlTypeName() {
        return "MediaGalleryEntry";
    }

    /**
     * Contains a ProductMediaGalleryEntriesContent object
     */

    public ProductMediaGalleryEntriesContent getContent() {
        return (ProductMediaGalleryEntriesContent) get("content");
    }

    public MediaGalleryEntry setContent(ProductMediaGalleryEntriesContent arg) {
        optimisticData.put(getKey("content"), arg);
        return this;
    }

    /**
     * Whether the image is hidden from vie
     */

    public Boolean getDisabled() {
        return (Boolean) get("disabled");
    }

    public MediaGalleryEntry setDisabled(Boolean arg) {
        optimisticData.put(getKey("disabled"), arg);
        return this;
    }

    /**
     * The path of the image on the server
     */

    public String getFile() {
        return (String) get("file");
    }

    public MediaGalleryEntry setFile(String arg) {
        optimisticData.put(getKey("file"), arg);
        return this;
    }

    /**
     * The identifier assigned to the object
     */

    public Integer getId() {
        return (Integer) get("id");
    }

    public MediaGalleryEntry setId(Integer arg) {
        optimisticData.put(getKey("id"), arg);
        return this;
    }

    /**
     * The alt text displayed on the UI when the user points to the image
     */

    public String getLabel() {
        return (String) get("label");
    }

    public MediaGalleryEntry setLabel(String arg) {
        optimisticData.put(getKey("label"), arg);
        return this;
    }

    /**
     * image or video
     */

    public String getMediaType() {
        return (String) get("media_type");
    }

    public MediaGalleryEntry setMediaType(String arg) {
        optimisticData.put(getKey("media_type"), arg);
        return this;
    }

    /**
     * The media item's position after it has been sorted
     */

    public Integer getPosition() {
        return (Integer) get("position");
    }

    public MediaGalleryEntry setPosition(Integer arg) {
        optimisticData.put(getKey("position"), arg);
        return this;
    }

    /**
     * Array of image types. It can have the following values: image, small_image, thumbnail
     */

    public List getTypes() {
        return (List) get("types");
    }

    public MediaGalleryEntry setTypes(List arg) {
        optimisticData.put(getKey("types"), arg);
        return this;
    }

    /**
     * Contains a ProductMediaGalleryEntriesVideoContent object
     */

    public ProductMediaGalleryEntriesVideoContent getVideoContent() {
        return (ProductMediaGalleryEntriesVideoContent) get("video_content");
    }

    public MediaGalleryEntry setVideoContent(ProductMediaGalleryEntriesVideoContent arg) {
        optimisticData.put(getKey("video_content"), arg);
        return this;
    }

    public boolean unwrapsToObject(String key) {
        switch (getFieldName(key)) {
            case "content": return true;

            case "disabled": return false;

            case "file": return false;

            case "id": return false;

            case "label": return false;

            case "media_type": return false;

            case "position": return false;

            case "types": return false;

            case "video_content": return true;

            default: return false;
        }
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy