/** * Invicti 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 { RequestFile } from './models'; /** * Provides inputs for OAuth 2.0 Flow End Point. */ export class OAuth2SettingEndpoint { /** * Gets or sets the endpoint URL */ 'url'?: string; /** * Gets or sets the endpoint content type */ 'contentType'?: string; /** * Gets or sets the endpoint method */ 'method'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "url", "baseName": "Url", "type": "string" }, { "name": "contentType", "baseName": "ContentType", "type": "string" }, { "name": "method", "baseName": "Method", "type": "string" } ]; static getAttributeTypeMap() { return OAuth2SettingEndpoint.attributeTypeMap; } }