/* 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 ZkLighterInfo */ export interface ZkLighterInfo { /** * * @type {string} * @memberof ZkLighterInfo */ contract_address: string; } /** * Check if a given object implements the ZkLighterInfo interface. */ export function instanceOfZkLighterInfo(value: object): value is ZkLighterInfo { if (!('contract_address' in value) || value['contract_address'] === undefined) return false; return true; } export function ZkLighterInfoFromJSON(json: any): ZkLighterInfo { return ZkLighterInfoFromJSONTyped(json, false); } export function ZkLighterInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ZkLighterInfo { if (json == null) { return json; } return { 'contract_address': json['contract_address'], }; } export function ZkLighterInfoToJSON(value?: ZkLighterInfo | null): any { if (value == null) { return value; } return { 'contract_address': value['contract_address'], }; }