/** * wallet-api * API * * The version of the OpenAPI document: 2.1.600 * Contact: development@wallet.inc * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; export class PresignedPostFields extends null { /** * A base64-encoded policy detailing what constitutes an acceptable POST upload. Composed of the conditions and expiration provided to s3.createPresignedPost */ 'policy': string; /** * A hex-encoded HMAC of the POST policy, signed with the credentials provided to the S3 client. */ 'xAmzSignature': string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "policy", "baseName": "Policy", "type": "string" }, { "name": "xAmzSignature", "baseName": "X-Amz-Signature", "type": "string" } ]; static getAttributeTypeMap() { return super.getAttributeTypeMap().concat(PresignedPostFields.attributeTypeMap); } }