boldsign
Version:
NodeJS client for boldsign
20 lines (19 loc) • 513 B
TypeScript
import { TeamUsers } from './teamUsers';
export declare class TeamResponse {
'teamId'?: string | null;
'teamName'?: string | null;
'users'?: Array<TeamUsers> | null;
'createdDate'?: number;
'modifiedDate'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}