lib/api/sfgate/sfgate_models/salesforce_post.go

55 lines
1.3 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
// (c) 2012-2020 by Taxnexus, Inc.
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package sfgate_models
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"context"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// SalesforcePost Relationship object that connects user to a role
//
// swagger:model SalesforcePost
type SalesforcePost struct {
// ID
ID string `json:"ID,omitempty"`
}
// Validate validates this salesforce post
func (m *SalesforcePost) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this salesforce post based on context it is used
func (m *SalesforcePost) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *SalesforcePost) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *SalesforcePost) UnmarshalBinary(b []byte) error {
var res SalesforcePost
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}