/** * Tezos Rarible API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.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 NftSignature */ export interface NftSignature { /** * * @type {string} * @memberof NftSignature */ r: string; /** * * @type {string} * @memberof NftSignature */ s: string; /** * * @type {string} * @memberof NftSignature */ v: string; } export declare function NftSignatureFromJSON(json: any): NftSignature; export declare function NftSignatureFromJSONTyped(json: any, ignoreDiscriminator: boolean): NftSignature; export declare function NftSignatureToJSON(value?: NftSignature | null): any;