forked from TailAdmin/free-nextjs-admin-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from 2060-io/38-services-edition-update-templa…
…te-params feat: Services edition update template params
- Loading branch information
Showing
5 changed files
with
148 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
export interface DtscCollectionVO { | ||
/** | ||
* @type {string} | ||
* @memberof DtscCollectionVO | ||
*/ | ||
description?:string; | ||
|
||
/** | ||
* @type {string} | ||
* @memberof DtscCollectionVO | ||
*/ | ||
id?:string; | ||
|
||
/** | ||
* @type {string} | ||
* @memberof DtscCollectionVO | ||
*/ | ||
name?:string; | ||
|
||
/** | ||
* @type {string} | ||
* @memberof DtscCollectionVO | ||
*/ | ||
template?:string; | ||
|
||
/** | ||
* @type {string} | ||
* @memberof DtscCollectionVO | ||
*/ | ||
templateRepo?:string; | ||
|
||
/** | ||
* @type {Date} | ||
* @memberof DtscCollectionVO | ||
*/ | ||
createdTs?: Date; | ||
} | ||
|
||
/** | ||
* Check if a given object implements the DtscCollectionVO interface. | ||
*/ | ||
export function instanceOfDtscCollectionVO(value: object): boolean { | ||
return true; | ||
} | ||
|
||
export function DtscCollectionVOFromJSON(json: any): DtscCollectionVO { | ||
return DtscCollectionVOFromJSONTyped(json, false); | ||
} | ||
|
||
export function DtscCollectionVOFromJSONTyped(json: any, ignoreDiscriminator: boolean): DtscCollectionVO { | ||
if(null == json){ | ||
return json; | ||
} | ||
return { | ||
description: json['description'] === null ? undefined : json['description'], | ||
id: json['id'] === null ? undefined : json['id'], | ||
name: json['name'] === null ? undefined : json['name'], | ||
template: json['template'] === null ? undefined : json['template'], | ||
templateRepo: json['templateRepo'] === null ? undefined : json['templateRepo'], | ||
createdTs: json['createdTs'] === null ? undefined : new Date(json['createdTs']), | ||
} | ||
} | ||
|
||
export function DtscCollectionVOToJSON(value?: DtscCollectionVO | null): any { | ||
if(null == value){ | ||
return value; | ||
} | ||
return { | ||
description: value['description'], | ||
id: value['id'], | ||
name: value['name'], | ||
template: value['template'], | ||
templateRepo: value['templateRepo'], | ||
createdTs: value['createdTs'], | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters