Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,211 changes: 3,211 additions & 0 deletions api/defaultApi.ts

Large diffs are not rendered by default.

73 changes: 73 additions & 0 deletions model/MessageTemplate.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@

export class MessageTemplate {
/**
* Status of the response.
*/
'type'?: string;
/**
* Data array containing the items.
*/
'locale'?: string;

'template'?: object;
'templateClass'?: string;

'accountId'?: number;

'updatedAt'?: string;

'default'?: boolean;

'brandId'?: number;


static discriminator: string | undefined = undefined;

static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "type",
"baseName": "type",
"type": "MessageTemplateSchema.TypeEnum"
},
{
"name": "locale",
"baseName": "locale",
"type": "string"
},
{
"name": "template",
"baseName": "template",
"type": "object"
},
{
"name": "templateClass",
"baseName": "template_class",
"type": "string"
},
{
"name": "accountId",
"baseName": "account_id",
"type": "number"
},
{
"name": "updatedAt",
"baseName": "updated_at",
"type": "string"
},
{
"name": "default",
"baseName": "default",
"type": "boolean"
},{
"name": "brandId",
"baseName": "brand_id",
"type": "number"
}
];

static getAttributeTypeMap() {
return MessageTemplate.attributeTypeMap;
}
}


48 changes: 48 additions & 0 deletions model/MessageTemplateType.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@



export class MessageTemplateType {
/**
* Status of the response.
*/
'type'?: string;
/**
* Data array containing the items.
*/
'locale'?: string;

'template'?: object;

'templateClass'?: string;

static discriminator: string | undefined = undefined;

static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "type",
"baseName": "type",
"type": "string"
},
{
"name": "locale",
"baseName": "locale",
"type": "string"
},
{
"name": "template",
"baseName": "template",
"type": "object"
},
{
"name": "templateClass",
"baseName": "template_class",
"type": "string"
}
];

static getAttributeTypeMap() {
return MessageTemplateType.attributeTypeMap;
}
}


139 changes: 139 additions & 0 deletions model/accountBrand.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
/**
* OneLogin API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 3.0.0-alpha.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
Comment on lines +1 to +11
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This class is edited manually, no?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes . by mistaken text got added. Will remove it in next commit.


import { RequestFile } from './models';

export class AccountBrand {
/**
* id of bands
*/
'enabled'?: boolean;
/**
* enabled or disabled
*/
'name'?: boolean;
/**
* name of brans
*/
'customSupportEnabled'?: string;

/**
* name of brans
*/
'customColor'?: boolean;

/**
* name of brans
*/
'customAccentColor'?: string;

'customMaskingOpacity'? : number;

'enableCustomLabelForLoginScreen'?: boolean;

'customLabelTextForLoginScreen'?: string;

'loginInstructionTitle'?: string;

'loginInstruction'? : string;

'hide_onelogin_footer'?: boolean;

'mfaEnrollmentMessage'?: string;

'background'?: string;

'logo'?: string;



static discriminator: string | undefined = undefined;

static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "enabled",
"baseName": "enabled",
"type": "boolean"
},
{
"name": "name",
"baseName": "name",
"type": "string"
},
{
"name": "customSupportEnabled",
"baseName": "custom_support_enabled",
"type": "string"
},
{
"name": "customColor",
"baseName": "custom_color",
"type": "sting"
},
{
"name": "customAccentColor",
"baseName": "custom_accent_color",
"type": "string"
},
{
"name": "customMaskingOpacity",
"baseName": "custom_masking_opacity",
"type": "number"
},
{
"name": "enable_custom_label_for_login_screen",
"baseName": "enable_custom_label_for_login_screen",
"type": "boolean"
},
{
"name": "custom_label_text_for_login_screen",
"baseName": "custom_label_text_for_login_screen",
"type": "sting"
},
{
"name": "loginInstructionTitle",
"baseName": "login_instruction_title",
"type": "sting"
},
{
"name": "loginInstruction",
"baseName": "login_instruction",
"type": "sting"
},
{
"name": "hideOneloginFooter",
"baseName": "hide_onelogin_footer",
"type": "boolean"
},
{
"name": "mfa_enrollment_message",
"baseName": "mfa_enrollment_message",
"type": "string"
},
{
"name": "background",
"baseName": "background",
"type": "string"
},
{
"name": "logo",
"baseName": "logo",
"type": "string"
},
];

static getAttributeTypeMap() {
return AccountBrand.attributeTypeMap;
}
}


Loading