/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; import type { ResultInfo } from './ResultInfo'; /** * * @export * @interface CreateShopResponseResponseBody */ export interface CreateShopResponseResponseBody { /** * * @type {ResultInfo} * @memberof CreateShopResponseResponseBody */ resultInfo: ResultInfo; /** * The shop ID that was created. Present when resultCodeId is 00000000 * @type {string} * @memberof CreateShopResponseResponseBody */ shopId?: string; } /** * Check if a given object implements the CreateShopResponseResponseBody interface. */ export declare function instanceOfCreateShopResponseResponseBody(value: object): value is CreateShopResponseResponseBody; export declare function CreateShopResponseResponseBodyFromJSON(json: any): CreateShopResponseResponseBody; export declare function CreateShopResponseResponseBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateShopResponseResponseBody; export declare function CreateShopResponseResponseBodyToJSON(json: any): CreateShopResponseResponseBody; export declare function CreateShopResponseResponseBodyToJSONTyped(value?: CreateShopResponseResponseBody | null, ignoreDiscriminator?: boolean): any; export declare function validateCreateShopResponseResponseBody(value: CreateShopResponseResponseBody): ValidationErrorContext[];