/** * 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 Part */ export interface Part { /** * * @type {string} * @memberof Part */ account: string; /** * * @type {number} * @memberof Part */ value: number; } export declare function PartFromJSON(json: any): Part; export declare function PartFromJSONTyped(json: any, ignoreDiscriminator: boolean): Part; export declare function PartToJSON(value?: Part | null): any;