boldsign
Version:
NodeJS client for boldsign
62 lines (55 loc) • 1.59 kB
text/typescript
/**
* BoldSign API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1
*
*
* 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 EmbeddedFileDetails {
'emailId'?: string | null;
'countryCode'?: string | null;
'phoneNumber'?: string | null;
'redirectUrl'?: string | null;
'order'?: number;
'onBehalfOf'?: string | null;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "emailId",
"baseName": "emailId",
"type": "string"
},
{
"name": "countryCode",
"baseName": "countryCode",
"type": "string"
},
{
"name": "phoneNumber",
"baseName": "phoneNumber",
"type": "string"
},
{
"name": "redirectUrl",
"baseName": "redirectUrl",
"type": "string"
},
{
"name": "order",
"baseName": "order",
"type": "number"
},
{
"name": "onBehalfOf",
"baseName": "onBehalfOf",
"type": "string"
} ];
static getAttributeTypeMap() {
return EmbeddedFileDetails.attributeTypeMap;
}
}