UserSchema: ZodObject<
{
access_billable: ZodOptional<ZodBoolean>;
account_id: ZodString;
account_status: ZodCustom<
"active"
| "inactive"
| "closed"
| string & {},
"active" | "inactive" | "closed" | string & {},
>;
account_type: ZodCustom<
string & {}
| "atlassian"
| "app"
| "customer",
string & {} | "atlassian" | "app" | "customer",
>;
email: ZodOptional<ZodString>;
last_active: ZodOptional<ZodCoercedDate<unknown>>;
links: ZodOptional<ZodObject<{ self: ZodNullable<ZodString> }, $loose>>;
name: ZodString;
picture: ZodString;
product_access: ZodOptional<
ZodArray<
ZodObject<
{
key: ZodCustom<
| string & {}
| "jira-software"
| "jira-service-desk"
| "jira-core"
| "jira-ops"
| "stride"
| "hipchat"
| "confluence"
| "bitbucket"
| "trello"
| "opsgenie"
| "statuspage",
| string & {}
| "jira-software"
| "jira-service-desk"
| "jira-core"
| "jira-ops"
| "stride"
| "hipchat"
| "confluence"
| "bitbucket"
| "trello"
| "opsgenie"
| "statuspage",
>;
last_active: ZodOptional<ZodCoercedDate<unknown>>;
name: ZodString;
url: ZodOptional<ZodString>;
},
$loose,
>,
>,
>;
},
$loose,
> = ...