All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.twitch4j.eventsub.events.UserAuthorizationRevokeEvent Maven / Gradle / Ivy

The newest version!
package com.github.twitch4j.eventsub.events;

import lombok.AccessLevel;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;

@Data
@Setter(AccessLevel.PRIVATE)
@NoArgsConstructor
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class UserAuthorizationRevokeEvent extends EventSubUserEvent {

    /**
     * The client_id of the application with revoked user access.
     */
    private String clientId;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy