UNPKG

whalecloud-dxp-api-react-native

Version:

This section explains how to use the SDK and illustrates it with an example: - This chapter is essential to learn - For specific business development, see [Bussiness Scenario](https://www.digchan.info/en-US/dxp/user-sso/sign-up) - The Business Scenario pr

67 lines (59 loc) 1.64 kB
/* tslint:disable */ /* eslint-disable */ /** * DXP API * 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. */ /** * * @export * @interface AttachForQuery */ export interface AttachForQuery { /** * A unique identifier for attachment. * @type {string} * @memberof AttachForQuery */ 'attachmentId'?: string; /** * The type of attachment. Possible values are: / 1: ID Document; / 2: ID Document; / 3: Home Address Proof; / 4: Company Address Proof; / 5: Financial Proof; / 6: Others. * @type {string} * @memberof AttachForQuery */ 'attachmentType': AttachForQueryAttachmentTypeEnum; /** * File Name * @type {string} * @memberof AttachForQuery */ 'fileName': string; /** * The URL where the resource can be accessed or downloaded. * @type {string} * @memberof AttachForQuery */ 'url'?: string; /** * The file type or format of the attachment, “pdf” or \"xls“ is supported * @type {string} * @memberof AttachForQuery */ 'fileType'?: string; } export const AttachForQueryAttachmentTypeEnum = { _1: '1', _2: '2', _3: '3', _4: '4', _5: '5', _6: '6' } as const; export type AttachForQueryAttachmentTypeEnum = typeof AttachForQueryAttachmentTypeEnum[keyof typeof AttachForQueryAttachmentTypeEnum];