vault/ui/api-client/dist/esm/models/SamlWriteCallbackRequest.d.ts

39 lines
1.4 KiB
TypeScript

/**
* HashiCorp Vault API
* HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`.
*
* The version of the OpenAPI document: 1.21.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface SamlWriteCallbackRequest
*/
export interface SamlWriteCallbackRequest {
/**
* The SAML RelayState that has round tripped through the Identity Provider.
* @type {string}
* @memberof SamlWriteCallbackRequest
*/
relayState: string;
/**
* The SAML response from the Identity Provider.
* @type {string}
* @memberof SamlWriteCallbackRequest
*/
sAMLResponse: string;
}
/**
* Check if a given object implements the SamlWriteCallbackRequest interface.
*/
export declare function instanceOfSamlWriteCallbackRequest(value: object): value is SamlWriteCallbackRequest;
export declare function SamlWriteCallbackRequestFromJSON(json: any): SamlWriteCallbackRequest;
export declare function SamlWriteCallbackRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SamlWriteCallbackRequest;
export declare function SamlWriteCallbackRequestToJSON(json: any): SamlWriteCallbackRequest;
export declare function SamlWriteCallbackRequestToJSONTyped(value?: SamlWriteCallbackRequest | null, ignoreDiscriminator?: boolean): any;