/* (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 scope) {}