it.auties.whatsapp.model.business.BusinessLocalizedName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whatsappweb4j Show documentation
Show all versions of whatsappweb4j Show documentation
Standalone fully-featured Whatsapp Web API for Java and Kotlin
The newest version!
package it.auties.whatsapp.model.business;
import it.auties.protobuf.base.ProtobufMessage;
import it.auties.protobuf.base.ProtobufName;
import it.auties.protobuf.base.ProtobufProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.experimental.Accessors;
import lombok.extern.jackson.Jacksonized;
import static it.auties.protobuf.base.ProtobufType.STRING;
/**
* A model class that represents a time a localizable name
*/
@AllArgsConstructor
@Data
@Builder
@Jacksonized
@Accessors(fluent = true)
@ProtobufName("LocalizedName")
public class BusinessLocalizedName implements ProtobufMessage {
/**
* Lg
*/
@ProtobufProperty(index = 1, type = STRING)
private String lg;
/**
* Lc
*/
@ProtobufProperty(index = 2, type = STRING)
private String lc;
/**
* The localized name
*/
@ProtobufProperty(index = 3, type = STRING)
private String name;
}