/** * Netsparker Enterprise API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { BasicAuthenticationSettingApiModel } from './basicAuthenticationSettingApiModel'; import { FormAuthenticationSettingApiModel } from './formAuthenticationSettingApiModel'; import { NameValuePair } from './nameValuePair'; import { OAuth2SettingEndpoint } from './oAuth2SettingEndpoint'; import { ResponseFields } from './responseFields'; import { ThreeLeggedFields } from './threeLeggedFields'; /** * Provides an inputs for OAuth 2.0 Flow. */ export declare class OAuth2SettingApiModel { 'flowType'?: OAuth2SettingApiModel.FlowTypeEnum; 'authenticationType'?: OAuth2SettingApiModel.AuthenticationTypeEnum; 'accessTokenEndpoint'?: OAuth2SettingEndpoint; 'authorizationCodeEndpoint'?: OAuth2SettingEndpoint; 'accessTokenItems'?: Array; 'authorizationCodeItems'?: Array; 'responseFields'?: ResponseFields; 'threeLeggedFields'?: ThreeLeggedFields; /** * Gets or sets the identifier. */ 'id'?: string; /** * Gets or sets the header authentication settings. */ 'headers'?: Array; 'formAuthenticationSetting'?: FormAuthenticationSettingApiModel; 'basicAuthenticationSetting'?: BasicAuthenticationSettingApiModel; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace OAuth2SettingApiModel { enum FlowTypeEnum { AuthorizationCode, Implicit, ResourceOwnerPasswordCredentials, ClientCredentials, Custom } enum AuthenticationTypeEnum { None, Form, Basic } }