gdprclientmodels

package
v0.73.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 6, 2024 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (

	// DTOServiceConfigDTOProtocolEVENT captures enum value "EVENT"
	DTOServiceConfigDTOProtocolEVENT string = "EVENT"

	// DTOServiceConfigDTOProtocolGRPC captures enum value "GRPC"
	DTOServiceConfigDTOProtocolGRPC string = "GRPC"
)
View Source
const (

	// DTOServiceConfigurationDTOTypeEXTEND captures enum value "EXTEND"
	DTOServiceConfigurationDTOTypeEXTEND string = "EXTEND"

	// DTOServiceConfigurationDTOTypeSERVICE captures enum value "SERVICE"
	DTOServiceConfigurationDTOTypeSERVICE string = "SERVICE"
)
View Source
const (

	// DTOFinishedDataDeletionStatusCOMPLETEDFAILED captures enum value "COMPLETED,FAILED"
	DTOFinishedDataDeletionStatusCOMPLETEDFAILED string = "COMPLETED,FAILED"
)
View Source
const (

	// DTOFinishedDataRequestStatusCOMPLETEDFAILED captures enum value "COMPLETED,FAILED"
	DTOFinishedDataRequestStatusCOMPLETEDFAILED string = "COMPLETED,FAILED"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type DTOExtendConfigDTO added in v0.55.0

type DTOExtendConfigDTO struct {

	// extend app name
	// Required: true
	AppName *string `json:"appName"`

	// extend app namespace
	// Required: true
	Namespace *string `json:"namespace"`
}

DTOExtendConfigDTO Dto extend config DTO

swagger:model Dto extend config DTO.

func (*DTOExtendConfigDTO) MarshalBinary added in v0.55.0

func (m *DTOExtendConfigDTO) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DTOExtendConfigDTO) UnmarshalBinary added in v0.55.0

func (m *DTOExtendConfigDTO) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DTOExtendConfigDTO) Validate added in v0.55.0

func (m *DTOExtendConfigDTO) Validate(formats strfmt.Registry) error

Validate validates this Dto extend config DTO

type DTOFinishedDataDeletion added in v0.71.0

type DTOFinishedDataDeletion struct {

	// Failed message if status is Failed
	FailedMessage string `json:"failedMessage,omitempty"`

	// Finished deletion date
	// Required: true
	// Format: date-time
	FinishedDate strfmt.DateTime `json:"finishedDate"`

	// Request deletion date
	// Required: true
	// Format: date-time
	RequestDate strfmt.DateTime `json:"requestDate"`

	// Status of request
	// Enum: ['Completed,Failed']
	// Required: true
	Status *string `json:"status"`

	// User Id. This userId will be anonymized automatically after 7 days from the **Success** deletion
	// Required: true
	UserID *string `json:"userId"`
}

DTOFinishedDataDeletion Dto finished data deletion

swagger:model Dto finished data deletion.

func (*DTOFinishedDataDeletion) MarshalBinary added in v0.71.0

func (m *DTOFinishedDataDeletion) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DTOFinishedDataDeletion) UnmarshalBinary added in v0.71.0

func (m *DTOFinishedDataDeletion) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DTOFinishedDataDeletion) Validate added in v0.71.0

func (m *DTOFinishedDataDeletion) Validate(formats strfmt.Registry) error

Validate validates this Dto finished data deletion

type DTOFinishedDataRequest added in v0.71.0

type DTOFinishedDataRequest struct {

	// The expiration date of generated data, it was 28 days after finishedDate. Available only if the status is Completed
	// Format: date-time
	DataExpirationDate *strfmt.DateTime `json:"dataExpirationDate,omitempty"`

	// Failed message if status is Failed
	FailedMessage string `json:"failedMessage,omitempty"`

	// Finished date
	// Required: true
	// Format: date-time
	FinishedDate strfmt.DateTime `json:"finishedDate"`

	// Request date
	// Required: true
	// Format: date-time
	RequestDate strfmt.DateTime `json:"requestDate"`

	// Status of request
	// Enum: ['Completed,Failed']
	// Required: true
	Status *string `json:"status"`

	// userid
	// Required: true
	UserID *string `json:"userId"`
}

DTOFinishedDataRequest Dto finished data request

swagger:model Dto finished data request.

func (*DTOFinishedDataRequest) MarshalBinary added in v0.71.0

func (m *DTOFinishedDataRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DTOFinishedDataRequest) UnmarshalBinary added in v0.71.0

func (m *DTOFinishedDataRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DTOFinishedDataRequest) Validate added in v0.71.0

func (m *DTOFinishedDataRequest) Validate(formats strfmt.Registry) error

Validate validates this Dto finished data request

type DTOListFinishedDataDeletion added in v0.71.0

type DTOListFinishedDataDeletion struct {

	// data
	// Required: true
	Data []*DTOFinishedDataDeletion `json:"data"`
}

DTOListFinishedDataDeletion Dto list finished data deletion

swagger:model Dto list finished data deletion.

func (*DTOListFinishedDataDeletion) MarshalBinary added in v0.71.0

func (m *DTOListFinishedDataDeletion) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DTOListFinishedDataDeletion) UnmarshalBinary added in v0.71.0

func (m *DTOListFinishedDataDeletion) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DTOListFinishedDataDeletion) Validate added in v0.71.0

func (m *DTOListFinishedDataDeletion) Validate(formats strfmt.Registry) error

Validate validates this Dto list finished data deletion

type DTOListFinishedDataRequests added in v0.71.0

type DTOListFinishedDataRequests struct {

	// data
	// Required: true
	Data []*DTOFinishedDataRequest `json:"data"`
}

DTOListFinishedDataRequests Dto list finished data requests

swagger:model Dto list finished data requests.

func (*DTOListFinishedDataRequests) MarshalBinary added in v0.71.0

func (m *DTOListFinishedDataRequests) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DTOListFinishedDataRequests) UnmarshalBinary added in v0.71.0

func (m *DTOListFinishedDataRequests) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DTOListFinishedDataRequests) Validate added in v0.71.0

func (m *DTOListFinishedDataRequests) Validate(formats strfmt.Registry) error

Validate validates this Dto list finished data requests

type DTOPlatformAccountClosureClientRequest added in v0.70.0

type DTOPlatformAccountClosureClientRequest struct {

	// clientid
	// Required: true
	ClientID *string `json:"clientId"`

	// secret
	// Required: true
	Secret *string `json:"secret"`
}

DTOPlatformAccountClosureClientRequest Dto platform account closure client request

swagger:model Dto platform account closure client request.

func (*DTOPlatformAccountClosureClientRequest) MarshalBinary added in v0.70.0

func (m *DTOPlatformAccountClosureClientRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DTOPlatformAccountClosureClientRequest) UnmarshalBinary added in v0.70.0

func (m *DTOPlatformAccountClosureClientRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DTOPlatformAccountClosureClientRequest) Validate added in v0.70.0

Validate validates this Dto platform account closure client request

type DTOPlatformAccountClosureClientResponse added in v0.70.0

type DTOPlatformAccountClosureClientResponse struct {

	// clientid
	// Required: true
	ClientID *string `json:"clientId"`

	// namespace
	// Required: true
	Namespace *string `json:"namespace"`

	// platform
	// Required: true
	Platform *string `json:"platform"`

	// secret
	// Required: true
	Secret *string `json:"secret"`

	// updatedat
	// Required: true
	// Format: int64
	UpdatedAt *int64 `json:"updatedAt"`
}

DTOPlatformAccountClosureClientResponse Dto platform account closure client response

swagger:model Dto platform account closure client response.

func (*DTOPlatformAccountClosureClientResponse) MarshalBinary added in v0.70.0

func (m *DTOPlatformAccountClosureClientResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DTOPlatformAccountClosureClientResponse) UnmarshalBinary added in v0.70.0

func (m *DTOPlatformAccountClosureClientResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DTOPlatformAccountClosureClientResponse) Validate added in v0.70.0

Validate validates this Dto platform account closure client response

type DTOServiceConfigDTO added in v0.55.0

type DTOServiceConfigDTO struct {

	// protocol type
	// Enum: ['EVENT', 'GRPC']
	// Required: true
	Protocol *string `json:"protocol"`

	// skip waiting for ack event from this service, used in "EVENT" protocol only.
	SkipAck bool `json:"skipAck"`

	// url of the service with port number, required in "GRPC" protocol
	URL string `json:"url,omitempty"`
}

DTOServiceConfigDTO Dto service config DTO

swagger:model Dto service config DTO.

func (*DTOServiceConfigDTO) MarshalBinary added in v0.55.0

func (m *DTOServiceConfigDTO) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DTOServiceConfigDTO) UnmarshalBinary added in v0.55.0

func (m *DTOServiceConfigDTO) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DTOServiceConfigDTO) Validate added in v0.55.0

func (m *DTOServiceConfigDTO) Validate(formats strfmt.Registry) error

Validate validates this Dto service config DTO

type DTOServiceConfigurationDTO added in v0.55.0

type DTOServiceConfigurationDTO struct {

	// extend configuration detail, required when "type" is "EXTEND"
	ExtendConfig *DTOExtendConfigDTO `json:"extendConfig,omitempty"`

	// service id
	// Required: true
	ID *string `json:"id"`

	// service configuration detail, required when "type" is "SERVICE"
	ServiceConfig *DTOServiceConfigDTO `json:"serviceConfig,omitempty"`

	// service type
	// Enum: ['EXTEND', 'SERVICE']
	// Required: true
	Type *string `json:"type"`
}

DTOServiceConfigurationDTO Dto service configuration DTO

swagger:model Dto service configuration DTO.

func (*DTOServiceConfigurationDTO) MarshalBinary added in v0.55.0

func (m *DTOServiceConfigurationDTO) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DTOServiceConfigurationDTO) UnmarshalBinary added in v0.55.0

func (m *DTOServiceConfigurationDTO) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DTOServiceConfigurationDTO) Validate added in v0.55.0

func (m *DTOServiceConfigurationDTO) Validate(formats strfmt.Registry) error

Validate validates this Dto service configuration DTO

type DTOServiceConfigurationUpdateRequest added in v0.55.0

type DTOServiceConfigurationUpdateRequest struct {

	// list of services
	// Required: true
	Services []*DTOServiceConfigurationDTO `json:"services"`
}

DTOServiceConfigurationUpdateRequest Dto service configuration update request

swagger:model Dto service configuration update request.

func (*DTOServiceConfigurationUpdateRequest) MarshalBinary added in v0.55.0

func (m *DTOServiceConfigurationUpdateRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DTOServiceConfigurationUpdateRequest) UnmarshalBinary added in v0.55.0

func (m *DTOServiceConfigurationUpdateRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DTOServiceConfigurationUpdateRequest) Validate added in v0.55.0

Validate validates this Dto service configuration update request

type DTOServicesConfigurationResponse added in v0.55.0

type DTOServicesConfigurationResponse struct {

	// list of services
	// Required: true
	Services []*DTOServiceConfigurationDTO `json:"services"`
}

DTOServicesConfigurationResponse Dto services configuration response

swagger:model Dto services configuration response.

func (*DTOServicesConfigurationResponse) MarshalBinary added in v0.55.0

func (m *DTOServicesConfigurationResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DTOServicesConfigurationResponse) UnmarshalBinary added in v0.55.0

func (m *DTOServicesConfigurationResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DTOServicesConfigurationResponse) Validate added in v0.55.0

Validate validates this Dto services configuration response

type DTOUserPlatformAccountClosureHistoriesResponse added in v0.70.0

type DTOUserPlatformAccountClosureHistoriesResponse struct {

	// data
	// Required: true
	Data []*DTOUserPlatformAccountClosureHistory `json:"data"`

	// pagination
	// Required: true
	Pagination *ModelsPagination `json:"pagination"`
}

DTOUserPlatformAccountClosureHistoriesResponse Dto user platform account closure histories response

swagger:model Dto user platform account closure histories response.

func (*DTOUserPlatformAccountClosureHistoriesResponse) MarshalBinary added in v0.70.0

MarshalBinary interface implementation

func (*DTOUserPlatformAccountClosureHistoriesResponse) UnmarshalBinary added in v0.70.0

UnmarshalBinary interface implementation

func (*DTOUserPlatformAccountClosureHistoriesResponse) Validate added in v0.70.0

Validate validates this Dto user platform account closure histories response

type DTOUserPlatformAccountClosureHistory added in v0.70.0

type DTOUserPlatformAccountClosureHistory struct {

	// closeddate
	// Required: true
	// Format: int64
	ClosedDate *int64 `json:"closedDate"`

	// environment
	// Required: true
	Environment *string `json:"environment"`

	// namespace
	// Required: true
	Namespace *string `json:"namespace"`

	// platform
	// Required: true
	Platform *string `json:"platform"`

	// platformuserid
	// Required: true
	PlatformUserID *string `json:"platformUserId"`

	// userid
	// Required: true
	UserID *string `json:"userId"`
}

DTOUserPlatformAccountClosureHistory Dto user platform account closure history

swagger:model Dto user platform account closure history.

func (*DTOUserPlatformAccountClosureHistory) MarshalBinary added in v0.70.0

func (m *DTOUserPlatformAccountClosureHistory) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DTOUserPlatformAccountClosureHistory) UnmarshalBinary added in v0.70.0

func (m *DTOUserPlatformAccountClosureHistory) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DTOUserPlatformAccountClosureHistory) Validate added in v0.70.0

Validate validates this Dto user platform account closure history

type ModelsDataRetrievalResponse

type ModelsDataRetrievalResponse struct {

	// namespace
	// Required: true
	Namespace *string `json:"Namespace"`

	// requestdate
	// Required: true
	// Format: date-time
	RequestDate strfmt.DateTime `json:"RequestDate"`

	// userid
	// Required: true
	UserID *string `json:"UserID"`
}

ModelsDataRetrievalResponse Models data retrieval response

swagger:model Models data retrieval response.

func (*ModelsDataRetrievalResponse) MarshalBinary

func (m *ModelsDataRetrievalResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsDataRetrievalResponse) UnmarshalBinary

func (m *ModelsDataRetrievalResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsDataRetrievalResponse) Validate

func (m *ModelsDataRetrievalResponse) Validate(formats strfmt.Registry) error

Validate validates this Models data retrieval response

type ModelsDeletionData

type ModelsDeletionData struct {

	// displayname
	// Required: true
	DisplayName *string `json:"DisplayName"`

	// requestdate
	// Required: true
	// Format: date-time
	RequestDate strfmt.DateTime `json:"RequestDate"`

	// status
	// Required: true
	Status *string `json:"Status"`

	// uniquedisplayname
	// Required: true
	UniqueDisplayName *string `json:"UniqueDisplayName"`

	// userid
	// Required: true
	UserID *string `json:"UserID"`
}

ModelsDeletionData Models deletion data

swagger:model Models deletion data.

func (*ModelsDeletionData) MarshalBinary

func (m *ModelsDeletionData) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsDeletionData) UnmarshalBinary

func (m *ModelsDeletionData) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsDeletionData) Validate

func (m *ModelsDeletionData) Validate(formats strfmt.Registry) error

Validate validates this Models deletion data

type ModelsDeletionStatus

type ModelsDeletionStatus struct {

	// deletiondate
	// Required: true
	DeletionDate *string `json:"DeletionDate"`

	// deletionstatus
	// Required: true
	DeletionStatus *bool `json:"DeletionStatus"`

	// displayname
	// Required: true
	DisplayName *string `json:"DisplayName"`

	// executiondate
	// Format: date-time
	ExecutionDate *strfmt.DateTime `json:"ExecutionDate,omitempty"`

	// status
	// Required: true
	Status *string `json:"Status"`

	// userid
	// Required: true
	UserID *string `json:"UserID"`
}

ModelsDeletionStatus Models deletion status

swagger:model Models deletion status.

func (*ModelsDeletionStatus) MarshalBinary

func (m *ModelsDeletionStatus) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsDeletionStatus) UnmarshalBinary

func (m *ModelsDeletionStatus) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsDeletionStatus) Validate

func (m *ModelsDeletionStatus) Validate(formats strfmt.Registry) error

Validate validates this Models deletion status

type ModelsListDeletionDataResponse

type ModelsListDeletionDataResponse struct {

	// data
	// Required: true
	Data []*ModelsDeletionData `json:"Data"`

	// paging
	// Required: true
	Paging *ModelsPagination `json:"Paging"`
}

ModelsListDeletionDataResponse Models list deletion data response

swagger:model Models list deletion data response.

func (*ModelsListDeletionDataResponse) MarshalBinary

func (m *ModelsListDeletionDataResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsListDeletionDataResponse) UnmarshalBinary

func (m *ModelsListDeletionDataResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsListDeletionDataResponse) Validate

func (m *ModelsListDeletionDataResponse) Validate(formats strfmt.Registry) error

Validate validates this Models list deletion data response

type ModelsListPersonalDataResponse

type ModelsListPersonalDataResponse struct {

	// data
	// Required: true
	Data []*ModelsPersonalData `json:"Data"`

	// paging
	// Required: true
	Paging *ModelsPagination `json:"Paging"`
}

ModelsListPersonalDataResponse Models list personal data response

swagger:model Models list personal data response.

func (*ModelsListPersonalDataResponse) MarshalBinary

func (m *ModelsListPersonalDataResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsListPersonalDataResponse) UnmarshalBinary

func (m *ModelsListPersonalDataResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsListPersonalDataResponse) Validate

func (m *ModelsListPersonalDataResponse) Validate(formats strfmt.Registry) error

Validate validates this Models list personal data response

type ModelsPagination

type ModelsPagination struct {

	// first
	// Required: true
	First *string `json:"First"`

	// last
	// Required: true
	Last *string `json:"Last"`

	// next
	// Required: true
	Next *string `json:"Next"`

	// previous
	// Required: true
	Previous *string `json:"Previous"`
}

ModelsPagination Models pagination

swagger:model Models pagination.

func (*ModelsPagination) MarshalBinary

func (m *ModelsPagination) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsPagination) UnmarshalBinary

func (m *ModelsPagination) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsPagination) Validate

func (m *ModelsPagination) Validate(formats strfmt.Registry) error

Validate validates this Models pagination

type ModelsPersonalData

type ModelsPersonalData struct {

	// dataexpirationdate
	// Required: true
	// Format: date-time
	DataExpirationDate strfmt.DateTime `json:"DataExpirationDate"`

	// displayname
	// Required: true
	DisplayName *string `json:"DisplayName"`

	// requestdate
	// Required: true
	// Format: date-time
	RequestDate strfmt.DateTime `json:"RequestDate"`

	// serviceerrors
	// Required: true
	ServiceErrors map[string]string `json:"ServiceErrors"`

	// servicestatuses
	// Required: true
	ServiceStatuses map[string]string `json:"ServiceStatuses"`

	// status
	// Required: true
	Status *string `json:"Status"`

	// userid
	// Required: true
	UserID *string `json:"UserID"`
}

ModelsPersonalData Models personal data

swagger:model Models personal data.

func (*ModelsPersonalData) MarshalBinary

func (m *ModelsPersonalData) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsPersonalData) UnmarshalBinary

func (m *ModelsPersonalData) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsPersonalData) Validate

func (m *ModelsPersonalData) Validate(formats strfmt.Registry) error

Validate validates this Models personal data

type ModelsRequestDeleteResponse

type ModelsRequestDeleteResponse struct {

	// namespace
	// Required: true
	Namespace *string `json:"Namespace"`

	// userid
	// Required: true
	UserID *string `json:"UserID"`
}

ModelsRequestDeleteResponse Models request delete response

swagger:model Models request delete response.

func (*ModelsRequestDeleteResponse) MarshalBinary

func (m *ModelsRequestDeleteResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsRequestDeleteResponse) UnmarshalBinary

func (m *ModelsRequestDeleteResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsRequestDeleteResponse) Validate

func (m *ModelsRequestDeleteResponse) Validate(formats strfmt.Registry) error

Validate validates this Models request delete response

type ModelsS2SDataRetrievalResponse added in v0.71.0

type ModelsS2SDataRetrievalResponse struct {

	// namespace
	// Required: true
	Namespace *string `json:"namespace"`

	// requestdate
	// Required: true
	// Format: date-time
	RequestDate strfmt.DateTime `json:"requestDate"`

	// userid
	// Required: true
	UserID *string `json:"userId"`
}

ModelsS2SDataRetrievalResponse Models S2S data retrieval response

swagger:model Models S2S data retrieval response.

func (*ModelsS2SDataRetrievalResponse) MarshalBinary added in v0.71.0

func (m *ModelsS2SDataRetrievalResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsS2SDataRetrievalResponse) UnmarshalBinary added in v0.71.0

func (m *ModelsS2SDataRetrievalResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsS2SDataRetrievalResponse) Validate added in v0.71.0

func (m *ModelsS2SDataRetrievalResponse) Validate(formats strfmt.Registry) error

Validate validates this Models S2S data retrieval response

type ModelsS2SRequestDeleteResponse added in v0.71.0

type ModelsS2SRequestDeleteResponse struct {

	// namespace
	// Required: true
	Namespace *string `json:"namespace"`

	// userid
	// Required: true
	UserID *string `json:"userId"`
}

ModelsS2SRequestDeleteResponse Models S2S request delete response

swagger:model Models S2S request delete response.

func (*ModelsS2SRequestDeleteResponse) MarshalBinary added in v0.71.0

func (m *ModelsS2SRequestDeleteResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsS2SRequestDeleteResponse) UnmarshalBinary added in v0.71.0

func (m *ModelsS2SRequestDeleteResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsS2SRequestDeleteResponse) Validate added in v0.71.0

func (m *ModelsS2SRequestDeleteResponse) Validate(formats strfmt.Registry) error

Validate validates this Models S2S request delete response

type ModelsS2SUserDataURL added in v0.71.0

type ModelsS2SUserDataURL struct {

	// url
	// Required: true
	URL *string `json:"url"`
}

ModelsS2SUserDataURL Models S2S user data URL

swagger:model Models S2S user data URL.

func (*ModelsS2SUserDataURL) MarshalBinary added in v0.71.0

func (m *ModelsS2SUserDataURL) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsS2SUserDataURL) UnmarshalBinary added in v0.71.0

func (m *ModelsS2SUserDataURL) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsS2SUserDataURL) Validate added in v0.71.0

func (m *ModelsS2SUserDataURL) Validate(formats strfmt.Registry) error

Validate validates this Models S2S user data URL

type ModelsUserDataURL

type ModelsUserDataURL struct {

	// url
	// Required: true
	URL *string `json:"URL"`
}

ModelsUserDataURL Models user data URL

swagger:model Models user data URL.

func (*ModelsUserDataURL) MarshalBinary

func (m *ModelsUserDataURL) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsUserDataURL) UnmarshalBinary

func (m *ModelsUserDataURL) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsUserDataURL) Validate

func (m *ModelsUserDataURL) Validate(formats strfmt.Registry) error

Validate validates this Models user data URL

type ModelsUserPersonalData

type ModelsUserPersonalData struct {

	// dataexpirationdate
	// Required: true
	// Format: date-time
	DataExpirationDate strfmt.DateTime `json:"DataExpirationDate"`

	// requestdate
	// Required: true
	// Format: date-time
	RequestDate strfmt.DateTime `json:"RequestDate"`

	// status
	// Required: true
	Status *string `json:"Status"`
}

ModelsUserPersonalData Models user personal data

swagger:model Models user personal data.

func (*ModelsUserPersonalData) MarshalBinary

func (m *ModelsUserPersonalData) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsUserPersonalData) UnmarshalBinary

func (m *ModelsUserPersonalData) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsUserPersonalData) Validate

func (m *ModelsUserPersonalData) Validate(formats strfmt.Registry) error

Validate validates this Models user personal data

type ModelsUserPersonalDataResponse

type ModelsUserPersonalDataResponse struct {

	// data
	// Required: true
	Data []*ModelsUserPersonalData `json:"Data"`

	// paging
	// Required: true
	Paging *ModelsPagination `json:"Paging"`
}

ModelsUserPersonalDataResponse Models user personal data response

swagger:model Models user personal data response.

func (*ModelsUserPersonalDataResponse) MarshalBinary

func (m *ModelsUserPersonalDataResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ModelsUserPersonalDataResponse) UnmarshalBinary

func (m *ModelsUserPersonalDataResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ModelsUserPersonalDataResponse) Validate

func (m *ModelsUserPersonalDataResponse) Validate(formats strfmt.Registry) error

Validate validates this Models user personal data response

type ResponseError

type ResponseError struct {

	// errorcode
	// Required: true
	// Format: int32
	ErrorCode *int32 `json:"errorCode"`

	// errormessage
	// Required: true
	ErrorMessage *string `json:"errorMessage"`
}

ResponseError Response error

swagger:model Response error.

func (*ResponseError) MarshalBinary

func (m *ResponseError) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ResponseError) UnmarshalBinary

func (m *ResponseError) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ResponseError) Validate

func (m *ResponseError) Validate(formats strfmt.Registry) error

Validate validates this Response error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL