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
46 changes: 46 additions & 0 deletions generated/models/ApiDropAndWave.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
// @ts-nocheck
/**
* 6529.io API
* This is the API interface description. Brief terminology overview and an authentication example can be found at <a href=\"https://6529.io/about/api\">https://6529.io/about/api</a>.
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

import { ApiDropV2 } from '../models/ApiDropV2';
import { ApiWaveOverview } from '../models/ApiWaveOverview';
import { HttpFile } from '../http/http';

export class ApiDropAndWave {
'drop': ApiDropV2;
'wave': ApiWaveOverview;

static readonly discriminator: string | undefined = undefined;

static readonly mapping: {[index: string]: string} | undefined = undefined;

static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "drop",
"baseName": "drop",
"type": "ApiDropV2",
"format": ""
},
{
"name": "wave",
"baseName": "wave",
"type": "ApiWaveOverview",
"format": ""
} ];

static getAttributeTypeMap() {
return ApiDropAndWave.attributeTypeMap;
}

public constructor() {
}
}
45 changes: 45 additions & 0 deletions generated/models/ApiDropBoostV2.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
// @ts-nocheck
/**
* 6529.io API
* This is the API interface description. Brief terminology overview and an authentication example can be found at <a href=\"https://6529.io/about/api\">https://6529.io/about/api</a>.
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

import { ApiIdentityOverview } from '../models/ApiIdentityOverview';
import { HttpFile } from '../http/http';

export class ApiDropBoostV2 {
'booster': ApiIdentityOverview;
'boosted_at': number;

static readonly discriminator: string | undefined = undefined;

static readonly mapping: {[index: string]: string} | undefined = undefined;

static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "booster",
"baseName": "booster",
"type": "ApiIdentityOverview",
"format": ""
},
{
"name": "boosted_at",
"baseName": "boosted_at",
"type": "number",
"format": "int64"
} ];

static getAttributeTypeMap() {
return ApiDropBoostV2.attributeTypeMap;
}

public constructor() {
}
}
19 changes: 19 additions & 0 deletions generated/models/ApiDropMainType.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// @ts-nocheck
/**
* 6529.io API
* This is the API interface description. Brief terminology overview and an authentication example can be found at <a href=\"https://6529.io/about/api\">https://6529.io/about/api</a>.
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

import { HttpFile } from '../http/http';

export enum ApiDropMainType {
Chat = 'CHAT',
Submission = 'SUBMISSION'
}
52 changes: 52 additions & 0 deletions generated/models/ApiDropMetadataV2.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
// @ts-nocheck
/**
* 6529.io API
* This is the API interface description. Brief terminology overview and an authentication example can be found at <a href=\"https://6529.io/about/api\">https://6529.io/about/api</a>.
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

import { ApiDropResolvedIdentityProfileV2 } from '../models/ApiDropResolvedIdentityProfileV2';
import { HttpFile } from '../http/http';

export class ApiDropMetadataV2 {
'data_key': string;
'data_value': string;
'resolved_profile'?: ApiDropResolvedIdentityProfileV2;

static readonly discriminator: string | undefined = undefined;

static readonly mapping: {[index: string]: string} | undefined = undefined;

static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "data_key",
"baseName": "data_key",
"type": "string",
"format": ""
},
{
"name": "data_value",
"baseName": "data_value",
"type": "string",
"format": ""
},
{
"name": "resolved_profile",
"baseName": "resolved_profile",
"type": "ApiDropResolvedIdentityProfileV2",
"format": ""
} ];

static getAttributeTypeMap() {
return ApiDropMetadataV2.attributeTypeMap;
}

public constructor() {
}
}
44 changes: 44 additions & 0 deletions generated/models/ApiDropPartQuoteV2.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// @ts-nocheck
/**
* 6529.io API
* This is the API interface description. Brief terminology overview and an authentication example can be found at <a href=\"https://6529.io/about/api\">https://6529.io/about/api</a>.
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

import { HttpFile } from '../http/http';

export class ApiDropPartQuoteV2 {
'drop_id': string;
'drop_part_id': number;

static readonly discriminator: string | undefined = undefined;

static readonly mapping: {[index: string]: string} | undefined = undefined;

static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "drop_id",
"baseName": "drop_id",
"type": "string",
"format": ""
},
{
"name": "drop_part_id",
"baseName": "drop_part_id",
"type": "number",
"format": "int64"
} ];

static getAttributeTypeMap() {
return ApiDropPartQuoteV2.attributeTypeMap;
}

public constructor() {
}
}
68 changes: 68 additions & 0 deletions generated/models/ApiDropPartV2.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
// @ts-nocheck
/**
* 6529.io API
* This is the API interface description. Brief terminology overview and an authentication example can be found at <a href=\"https://6529.io/about/api\">https://6529.io/about/api</a>.
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

import { ApiAttachment } from '../models/ApiAttachment';
import { ApiDropMedia } from '../models/ApiDropMedia';
import { ApiDropPartQuoteV2 } from '../models/ApiDropPartQuoteV2';
import { HttpFile } from '../http/http';

export class ApiDropPartV2 {
'part_no': number;
'content'?: string;
'media'?: Array<ApiDropMedia>;
'attachments'?: Array<ApiAttachment>;
'quoted_drop'?: ApiDropPartQuoteV2;

static readonly discriminator: string | undefined = undefined;

static readonly mapping: {[index: string]: string} | undefined = undefined;

static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "part_no",
"baseName": "part_no",
"type": "number",
"format": "int64"
},
{
"name": "content",
"baseName": "content",
"type": "string",
"format": ""
},
{
"name": "media",
"baseName": "media",
"type": "Array<ApiDropMedia>",
"format": ""
},
{
"name": "attachments",
"baseName": "attachments",
"type": "Array<ApiAttachment>",
"format": ""
},
{
"name": "quoted_drop",
"baseName": "quoted_drop",
"type": "ApiDropPartQuoteV2",
"format": ""
} ];

static getAttributeTypeMap() {
return ApiDropPartV2.attributeTypeMap;
}

public constructor() {
}
}
44 changes: 44 additions & 0 deletions generated/models/ApiDropReactionCounter.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// @ts-nocheck
/**
* 6529.io API
* This is the API interface description. Brief terminology overview and an authentication example can be found at <a href=\"https://6529.io/about/api\">https://6529.io/about/api</a>.
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

import { HttpFile } from '../http/http';

export class ApiDropReactionCounter {
'reaction': string;
'count': number;

static readonly discriminator: string | undefined = undefined;

static readonly mapping: {[index: string]: string} | undefined = undefined;

static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "reaction",
"baseName": "reaction",
"type": "string",
"format": ""
},
{
"name": "count",
"baseName": "count",
"type": "number",
"format": "int64"
} ];

static getAttributeTypeMap() {
return ApiDropReactionCounter.attributeTypeMap;
}

public constructor() {
}
}
45 changes: 45 additions & 0 deletions generated/models/ApiDropReactionV2.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
// @ts-nocheck
/**
* 6529.io API
* This is the API interface description. Brief terminology overview and an authentication example can be found at <a href=\"https://6529.io/about/api\">https://6529.io/about/api</a>.
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

import { ApiIdentityOverview } from '../models/ApiIdentityOverview';
import { HttpFile } from '../http/http';

export class ApiDropReactionV2 {
'reaction': string;
'reactors': Array<ApiIdentityOverview>;

static readonly discriminator: string | undefined = undefined;

static readonly mapping: {[index: string]: string} | undefined = undefined;

static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "reaction",
"baseName": "reaction",
"type": "string",
"format": ""
},
{
"name": "reactors",
"baseName": "reactors",
"type": "Array<ApiIdentityOverview>",
"format": ""
} ];

static getAttributeTypeMap() {
return ApiDropReactionV2.attributeTypeMap;
}

public constructor() {
}
}
Loading
Loading