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

com.dft.api.shopify.model.ShopifyWebhookRoot Maven / Gradle / Ivy

The newest version!
package com.dft.api.shopify.model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
public class ShopifyWebhookRoot {

    private ShopifyWebhook webhook;

    public ShopifyWebhookRoot(ShopifyWebhook shopifyWebhook) {
        this.webhook = shopifyWebhook;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy