xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
30 lines (29 loc) • 754 B
TypeScript
export declare class SuperFundProduct {
/**
* The ABN of the Regulated SuperFund
*/
'aBN'?: string;
/**
* The USI of the Regulated SuperFund
*/
'uSI'?: string;
/**
* The SPIN of the Regulated SuperFund. This field has been deprecated. New superfunds will not have a SPIN value. The USI field should be used instead of SPIN
*/
'sPIN'?: string;
/**
* The name of the Regulated SuperFund
*/
'productName'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}