/** * keepkey-sdk-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.1 * * * 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 ChangePinRequest */ export interface ChangePinRequest { /** * * @type {boolean} * @memberof ChangePinRequest */ remove?: boolean; } /** * Check if a given object implements the ChangePinRequest interface. */ export declare function instanceOfChangePinRequest(value: object): boolean; export declare function ChangePinRequestFromJSON(json: any): ChangePinRequest; export declare function ChangePinRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChangePinRequest; export declare function ChangePinRequestToJSON(value?: ChangePinRequest | null): any;