UNPKG

@ringer-tel/ivy

Version:
74 lines (63 loc) 2.48 kB
/* tslint:disable */ /* eslint-disable */ /** * Ringer Business API * This API provides comprehensive endpoints for the Ringer Business system. It includes functionality for managing customer accounts, addresses, sites, phone numbers, payments, users, and other business resources. Operations typically require authentication and appropriate permissions. * * The version of the OpenAPI document: 1.0.5 * Contact: support@ringer.tel * * 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 CallRecordsComponentsSchemasErrorDetailsInner */ export interface CallRecordsComponentsSchemasErrorDetailsInner { /** * * @type {string} * @memberof CallRecordsComponentsSchemasErrorDetailsInner */ field?: string; /** * * @type {string} * @memberof CallRecordsComponentsSchemasErrorDetailsInner */ issue?: string; } /** * Check if a given object implements the CallRecordsComponentsSchemasErrorDetailsInner interface. */ export function instanceOfCallRecordsComponentsSchemasErrorDetailsInner(value: object): value is CallRecordsComponentsSchemasErrorDetailsInner { return true; } export function CallRecordsComponentsSchemasErrorDetailsInnerFromJSON(json: any): CallRecordsComponentsSchemasErrorDetailsInner { return CallRecordsComponentsSchemasErrorDetailsInnerFromJSONTyped(json, false); } export function CallRecordsComponentsSchemasErrorDetailsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallRecordsComponentsSchemasErrorDetailsInner { if (json == null) { return json; } return { 'field': json['field'] == null ? undefined : json['field'], 'issue': json['issue'] == null ? undefined : json['issue'], }; } export function CallRecordsComponentsSchemasErrorDetailsInnerToJSON(json: any): CallRecordsComponentsSchemasErrorDetailsInner { return CallRecordsComponentsSchemasErrorDetailsInnerToJSONTyped(json, false); } export function CallRecordsComponentsSchemasErrorDetailsInnerToJSONTyped(value?: CallRecordsComponentsSchemasErrorDetailsInner | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'field': value['field'], 'issue': value['issue'], }; }