Class Invite
An invite that has been minted and is ready to share. Immutable; create one
with Invites.create(InviteRequest).
getUrl() is the link to send. It is usable the moment Invites.create(InviteRequest)
returns, including with no network at all, so the share sheet never waits
on a server.
-
Method Summary
Modifier and TypeMethodDescriptionThe campaign this invite belongs to, or null.The channel this invite was minted for, or null.getCode()The opaque invite code.longWhen this invite was minted, in milliseconds since the epoch.The application defined payload carried to the invited device, or null.getUrl()The link to share.toString()Returns a string representation of the object.
-
Method Details
-
getCode
The opaque invite code. This identifies the invite and authorizes nothing, so it is safe to print, log or show to the user.
Returns
the code, never null
-
getUrl
The link to share.
Returns
an absolute https url, never null
-
getCampaign
The campaign this invite belongs to, or null.
Returns
the campaign
-
getChannel
The channel this invite was minted for, or null.
Returns
the channel
-
getPayload
The application defined payload carried to the invited device, or null.
Returns
the payload
-
getCreatedTimestamp
public long getCreatedTimestamp()When this invite was minted, in milliseconds since the epoch.
Returns
the creation time
-
toString
Description copied from class:ObjectReturns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method. The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of: getClass().getName() + '@' + Integer.toHexString(hashCode())
-