
org.infobip.mobile.messaging.api.rtc.TokenBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infobip-mobile-messaging-api-java Show documentation
Show all versions of infobip-mobile-messaging-api-java Show documentation
Mobile Messaging SDK for Android
The newest version!
package org.infobip.mobile.messaging.api.rtc;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
@RequiredArgsConstructor
@Getter
public class TokenBody {
private final String identity;
private final Long timeToLive;
@Override
public String toString() {
return "TokenBody{" +
"identity='" + identity + '\'' +
", timeToLive=" + timeToLive +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy