/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * 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 SAMLProviderPartialUpdate */ export interface SAMLProviderPartialUpdate { /** * * @type {string} * @memberof SAMLProviderPartialUpdate */ name?: string; /** * * @type {string} * @memberof SAMLProviderPartialUpdate */ entityId?: string; /** * * @type {string} * @memberof SAMLProviderPartialUpdate */ ssoUrl?: string; /** * * @type {string} * @memberof SAMLProviderPartialUpdate */ sloUrl?: string | null; /** * * @type {string} * @memberof SAMLProviderPartialUpdate */ certificate?: string; /** * * @type {string} * @memberof SAMLProviderPartialUpdate */ spCertificate?: string | null; /** * * @type {string} * @memberof SAMLProviderPartialUpdate */ spCertificateKey?: string | null; } export declare function SAMLProviderPartialUpdateFromJSON(json: any): SAMLProviderPartialUpdate; export declare function SAMLProviderPartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): SAMLProviderPartialUpdate; export declare function SAMLProviderPartialUpdateToJSON(value?: SAMLProviderPartialUpdate | null): any;