forked from mailslurp/mailslurp-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_page_template_projection.go
24 lines (23 loc) · 1.2 KB
/
model_page_template_projection.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
* MailSlurp API
*
* MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://www.mailslurp.com/docs/) - [Examples](https://github.com/mailslurp/examples) repository
*
* API version: d1659dc1567a5b62f65d0612107a50aace03e085
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package mailslurp
// PageTemplateProjection struct for PageTemplateProjection
type PageTemplateProjection struct {
Content []TemplateProjection `json:"content,omitempty"`
Empty bool `json:"empty,omitempty"`
First bool `json:"first,omitempty"`
Last bool `json:"last,omitempty"`
Number int32 `json:"number,omitempty"`
NumberOfElements int32 `json:"numberOfElements,omitempty"`
Pageable Pageable `json:"pageable,omitempty"`
Size int32 `json:"size,omitempty"`
Sort Sort `json:"sort,omitempty"`
TotalElements int64 `json:"totalElements,omitempty"`
TotalPages int32 `json:"totalPages,omitempty"`
}