/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; /** * Contact mobile number (`contactMobileNo` in merchantInformation) * @export * @interface MerchantContactMobileNo */ export interface MerchantContactMobileNo { /** * Mobile phone number * @type {string} * @memberof MerchantContactMobileNo */ mobileNo?: string; /** * Whether the mobile number is verified (API may return true/false or TRUE/FALSE) * @type {string} * @memberof MerchantContactMobileNo */ isVerified?: string; } /** * Check if a given object implements the MerchantContactMobileNo interface. */ export declare function instanceOfMerchantContactMobileNo(value: object): value is MerchantContactMobileNo; export declare function MerchantContactMobileNoFromJSON(json: any): MerchantContactMobileNo; export declare function MerchantContactMobileNoFromJSONTyped(json: any, ignoreDiscriminator: boolean): MerchantContactMobileNo; export declare function MerchantContactMobileNoToJSON(json: any): MerchantContactMobileNo; export declare function MerchantContactMobileNoToJSONTyped(value?: MerchantContactMobileNo | null, ignoreDiscriminator?: boolean): any; export declare function validateMerchantContactMobileNo(value: MerchantContactMobileNo): ValidationErrorContext[];