xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
54 lines (53 loc) • 1.33 kB
TypeScript
/**
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.0.0
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export declare class BrandingTheme {
/**
* Xero identifier
*/
'brandingThemeID'?: string;
/**
* Name of branding theme
*/
'name'?: string;
/**
* The location of the image file used as the logo on this branding theme
*/
'logoUrl'?: string;
/**
* Always INVOICE
*/
'type'?: BrandingTheme.TypeEnum;
/**
* Integer – ranked order of branding theme. The default branding theme has a value of 0
*/
'sortOrder'?: number;
/**
* UTC timestamp of creation date of branding theme
*/
'createdDateUTC'?: Date;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace BrandingTheme {
enum TypeEnum {
INVOICE
}
}