/** * Audius API * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Artist locker balance and claimable info for the coin * @export * @interface ArtistLocker */ export interface ArtistLocker { /** * Locker contract/pool address * @type {string} * @memberof ArtistLocker */ address?: string; /** * Locked amount * @type {number} * @memberof ArtistLocker */ locked?: number; /** * Unlocked amount * @type {number} * @memberof ArtistLocker */ unlocked?: number; /** * Claimable amount * @type {number} * @memberof ArtistLocker */ claimable?: number; } /** * Check if a given object implements the ArtistLocker interface. */ export declare function instanceOfArtistLocker(value: object): value is ArtistLocker; export declare function ArtistLockerFromJSON(json: any): ArtistLocker; export declare function ArtistLockerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ArtistLocker; export declare function ArtistLockerToJSON(value?: ArtistLocker | null): any;