/** * 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. */ /** * * @export * @interface TrackSegment */ export interface TrackSegment { /** * * @type {number} * @memberof TrackSegment */ duration: number; /** * * @type {string} * @memberof TrackSegment */ multihash: string; } /** * Check if a given object implements the TrackSegment interface. */ export declare function instanceOfTrackSegment(value: object): value is TrackSegment; export declare function TrackSegmentFromJSON(json: any): TrackSegment; export declare function TrackSegmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackSegment; export declare function TrackSegmentToJSON(value?: TrackSegment | null): any;