NylasListItem

public final class NylasListItem

Class representation of a single item in a Nylas list.

Constructors

Link copied to clipboard
public NylasListItem NylasListItem(@Json(name = "id") String id, @Json(name = "list_id") String listId, @Json(name = "value") String value, @Json(name = "created_at") Long createdAt)

Properties

Link copied to clipboard
private final Long createdAt

Unix timestamp when the item was created.

Link copied to clipboard
private final String id

Globally unique object identifier.

Link copied to clipboard
private final String listId

The ID of the list this item belongs to.

Link copied to clipboard
private final String value

The value stored in this item (domain, TLD, or address depending on list type).

Functions

Link copied to clipboard
public final Long getCreatedAt()

Unix timestamp when the item was created.

Link copied to clipboard
public final String getId()

Globally unique object identifier.

Link copied to clipboard
public final String getListId()

The ID of the list this item belongs to.

Link copied to clipboard
public final String getValue()

The value stored in this item (domain, TLD, or address depending on list type).