com.greenapi.client.pkg.models.notifications.FileMessageWebhook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whatsapp-api-client-java Show documentation
Show all versions of whatsapp-api-client-java Show documentation
WhatsApp java client Green API
package com.greenapi.client.pkg.models.notifications;
import com.greenapi.client.pkg.models.notifications.messages.FileMessage;
import lombok.*;
@EqualsAndHashCode(callSuper = true)
@Data
@Setter(value = AccessLevel.NONE)
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class FileMessageWebhook extends MessageWebhook {
private FileMessage messageData;
}