/** * Finix API */ export declare class UpdateDeviceRequest { /** * The action you want to perform on the device. Use **DEACTIVATE** to deactivate the device. */ 'action'?: UpdateDeviceRequest.ActionEnum | string; /** * Used when `action` is **ACTIVATE**. Provide the input code that shows up on the device screen. */ 'activationCode'?: string; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; /** * Message to display on the idle screen. */ 'idleMessage'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace UpdateDeviceRequest { enum ActionEnum { Reboot, Deactivate, Activate, CreateIdleMessage } }