001package ca.cdr.api.model.json.appgallery.common; 002 003/* 004 * #%L 005 * Smile CDR - CDR 006 * %% 007 * Copyright (C) 2016 - 2024 Smile CDR, Inc. 008 * %% 009 * All rights reserved. 010 * #L% 011 */ 012 013import ca.cdr.api.model.json.AbstractModelJson; 014import io.swagger.v3.oas.annotations.media.Schema; 015 016public class AGConfidentialInfoJson extends AbstractModelJson { 017 @Schema(description = "Type of Authentication") 018 public String confidentialType; 019 020 @Schema(description = "Public JWKS Keystore text") 021 public String jwkSet; 022 023 @Schema(description = "Public URL that provides the JSON Web Key Set") 024 public String jwkSetUrl; 025}