summaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/prickly/model/AuthorizationRequest.java
blob: bd5c74f576e56f640446c636d76a41a7555c3ddf (plain)
1
2
3
4
5
6
7
8
9
10
/* (C) 2025 Linnea Gräf - Licensed to everyone under the BSD 3 Clause License */
package moe.nea.prickly.model;

import java.net.URI;
import java.util.List;
import moe.nea.prickly.util.OAuthUtil;
import org.jspecify.annotations.Nullable;

public record AuthorizationRequest(
		OAuthUtil.ResponseType responseType, URI redirectUri, @Nullable String state, List<String> scope) {}