/* tslint:disable */ /* eslint-disable */ /** * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { mapValues } from '../runtime'; /** * * @export * @interface ReqGetAssetDetails */ export interface ReqGetAssetDetails { /** * * @type {number} * @memberof ReqGetAssetDetails */ asset_id?: number; } /** * Check if a given object implements the ReqGetAssetDetails interface. */ export function instanceOfReqGetAssetDetails(value: object): value is ReqGetAssetDetails { return true; } export function ReqGetAssetDetailsFromJSON(json: any): ReqGetAssetDetails { return ReqGetAssetDetailsFromJSONTyped(json, false); } export function ReqGetAssetDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqGetAssetDetails { if (json == null) { return json; } return { 'asset_id': json['asset_id'] == null ? undefined : json['asset_id'], }; } export function ReqGetAssetDetailsToJSON(value?: ReqGetAssetDetails | null): any { if (value == null) { return value; } return { 'asset_id': value['asset_id'], }; }