-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
PureCloud Jenkins
committed
Jun 10, 2020
1 parent
9f69321
commit 76d93d3
Showing
65 changed files
with
2,286 additions
and
1,085 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
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,50 @@ | ||
package platformclientv2 | ||
import ( | ||
"time" | ||
"encoding/json" | ||
) | ||
|
||
// Coachingannotation | ||
type Coachingannotation struct { | ||
// Id - The globally unique identifier for the object. | ||
Id *string `json:"id,omitempty"` | ||
|
||
|
||
// CreatedBy - The user who created the annotation. | ||
CreatedBy *Userreference `json:"createdBy,omitempty"` | ||
|
||
|
||
// DateCreated - The date/time the annotation was created. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss.SSSZ | ||
DateCreated *time.Time `json:"dateCreated,omitempty"` | ||
|
||
|
||
// ModifiedBy - The last user to modify the annotation. | ||
ModifiedBy *Userreference `json:"modifiedBy,omitempty"` | ||
|
||
|
||
// DateModified - The date/time the annotation was last modified. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss.SSSZ | ||
DateModified *time.Time `json:"dateModified,omitempty"` | ||
|
||
|
||
// Text - The text of the annotation. | ||
Text *string `json:"text,omitempty"` | ||
|
||
|
||
// IsDeleted - Flag indicating whether the annotation is deleted. | ||
IsDeleted *bool `json:"isDeleted,omitempty"` | ||
|
||
|
||
// AccessType - Determines the permissions required to view this item. | ||
AccessType *string `json:"accessType,omitempty"` | ||
|
||
|
||
// SelfUri - The URI for this object | ||
SelfUri *string `json:"selfUri,omitempty"` | ||
|
||
} | ||
|
||
// String returns a JSON representation of the model | ||
func (o *Coachingannotation) String() string { | ||
j, _ := json.Marshal(o) | ||
return string(j) | ||
} |
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,21 @@ | ||
package platformclientv2 | ||
import ( | ||
"encoding/json" | ||
) | ||
|
||
// Coachingannotationcreaterequest | ||
type Coachingannotationcreaterequest struct { | ||
// Text - The text of the annotation. | ||
Text *string `json:"text,omitempty"` | ||
|
||
|
||
// AccessType - Determines the permissions required to view this item. | ||
AccessType *string `json:"accessType,omitempty"` | ||
|
||
} | ||
|
||
// String returns a JSON representation of the model | ||
func (o *Coachingannotationcreaterequest) String() string { | ||
j, _ := json.Marshal(o) | ||
return string(j) | ||
} |
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,53 @@ | ||
package platformclientv2 | ||
import ( | ||
"encoding/json" | ||
) | ||
|
||
// Coachingannotationlist | ||
type Coachingannotationlist struct { | ||
// Entities | ||
Entities *[]Coachingannotation `json:"entities,omitempty"` | ||
|
||
|
||
// PageSize | ||
PageSize *int32 `json:"pageSize,omitempty"` | ||
|
||
|
||
// PageNumber | ||
PageNumber *int32 `json:"pageNumber,omitempty"` | ||
|
||
|
||
// Total | ||
Total *int64 `json:"total,omitempty"` | ||
|
||
|
||
// FirstUri | ||
FirstUri *string `json:"firstUri,omitempty"` | ||
|
||
|
||
// SelfUri | ||
SelfUri *string `json:"selfUri,omitempty"` | ||
|
||
|
||
// NextUri | ||
NextUri *string `json:"nextUri,omitempty"` | ||
|
||
|
||
// LastUri | ||
LastUri *string `json:"lastUri,omitempty"` | ||
|
||
|
||
// PreviousUri | ||
PreviousUri *string `json:"previousUri,omitempty"` | ||
|
||
|
||
// PageCount | ||
PageCount *int32 `json:"pageCount,omitempty"` | ||
|
||
} | ||
|
||
// String returns a JSON representation of the model | ||
func (o *Coachingannotationlist) String() string { | ||
j, _ := json.Marshal(o) | ||
return string(j) | ||
} |
Oops, something went wrong.