ru.moysklad.remap_1_2.entities.WebHook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-remap-1.2-sdk Show documentation
Show all versions of api-remap-1.2-sdk Show documentation
Simplest way to work with entities like assortment and documents from moysklad.ru and mystorehq.com
The newest version!
package ru.moysklad.remap_1_2.entities;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
@Getter
@Setter
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class WebHook extends MetaEntity {
private Meta.Type entityType;
private String url;
private HttpMethod method;
private Boolean enabled;
private EntityAction action;
public enum HttpMethod {
POST
}
public enum EntityAction {
CREATE,
UPDATE,
DELETE
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy